Unnecessary quotes and brackets over backticks

This commit is contained in:
John Mertz 2024-02-08 16:48:35 -07:00
parent 18373ae653
commit 6d558e6317
1 changed files with 7 additions and 6 deletions

View File

@ -18,21 +18,22 @@ exec gsettings set org.gnome.desktop.interface cursor-theme 'FlatbedCursors-Oran
################################################################################
# Start ssh-agent
exec "${HOME}/scripts/ssh-agent.sh" &
exec ${HOME}/scripts/ssh-agent.sh &
# Automatically restore last used output configuration
# TODO: Need to add fail-safe to script in case the outputs are unavailable
exec "${HOME}/scripts/sway/displays.pl `cat ${HOME}/.spool/last_display`" &
exec ${HOME}/scripts/sway/displays.pl $(cat ${HOME}/.spool/last_display) &
# Enable automatic color temperature change
exec "${HOME}/scripts/distrobox/debian/gammastep.pl" &
exec "${HOME}/.local/bin/wl-gammactl" -c -1.000 -b 2.000 -g 0.500 -m DP-1 &
exec ${HOME}/scripts/distrobox/debian/gammastep.pl &
exec ${HOME}/.local/bin/wl-gammactl -c -1.000 -b 2.000 -g 0.500 -m DP-1 &
# Window transparency
exec systemctl --user restart sway-transparency.service &
# Idle daemon
exec systemctl --user restart swayidle.service &
exec ${HOME}/scripts/sway/idle.sh daemon &
#exec systemctl --user restart swayidle.service &
# Wallpapers
exec systemctl --user restart wallpapers.service &
@ -81,6 +82,6 @@ exec flatpak run com.github.Murmele.Gittyup &
exec flatpak run com.github.Eloston.UngoogledChromium --app="https://papillon.john.me.tz" --socket=wayland --ozone-platform=wayland --enable-reatures=UseOzonePlatform &
# Assign workspaces to outputs
exec "${HOME}/scripts/sway/arrange.pl" &
exec ${HOME}/scripts/sway/arrange.pl &
exec swaymsg workspace 1 &