Unnecessary quotes and brackets over backticks
This commit is contained in:
parent
18373ae653
commit
6d558e6317
|
@ -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 &
|
||||
|
|
Loading…
Reference in New Issue