From 6d558e6317efac3c9d0775fc18fe3ce1f8af5746 Mon Sep 17 00:00:00 2001 From: John Mertz Date: Thu, 8 Feb 2024 16:48:35 -0700 Subject: [PATCH] Unnecessary quotes and brackets over backticks --- sway/autostart | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/sway/autostart b/sway/autostart index 9f1752a60..a9b0a4d0b 100644 --- a/sway/autostart +++ b/sway/autostart @@ -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 &