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
|
# Start ssh-agent
|
||||||
exec "${HOME}/scripts/ssh-agent.sh" &
|
exec ${HOME}/scripts/ssh-agent.sh &
|
||||||
|
|
||||||
# Automatically restore last used output configuration
|
# Automatically restore last used output configuration
|
||||||
# TODO: Need to add fail-safe to script in case the outputs are unavailable
|
# 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
|
# Enable automatic color temperature change
|
||||||
exec "${HOME}/scripts/distrobox/debian/gammastep.pl" &
|
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}/.local/bin/wl-gammactl -c -1.000 -b 2.000 -g 0.500 -m DP-1 &
|
||||||
|
|
||||||
# Window transparency
|
# Window transparency
|
||||||
exec systemctl --user restart sway-transparency.service &
|
exec systemctl --user restart sway-transparency.service &
|
||||||
|
|
||||||
# Idle daemon
|
# Idle daemon
|
||||||
exec systemctl --user restart swayidle.service &
|
exec ${HOME}/scripts/sway/idle.sh daemon &
|
||||||
|
#exec systemctl --user restart swayidle.service &
|
||||||
|
|
||||||
# Wallpapers
|
# Wallpapers
|
||||||
exec systemctl --user restart wallpapers.service &
|
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 &
|
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
|
# Assign workspaces to outputs
|
||||||
exec "${HOME}/scripts/sway/arrange.pl" &
|
exec ${HOME}/scripts/sway/arrange.pl &
|
||||||
|
|
||||||
exec swaymsg workspace 1 &
|
exec swaymsg workspace 1 &
|
||||||
|
|
Loading…
Reference in New Issue