diff options
author | jakobst1n <jakob.stendahl@outlook.com> | 2024-01-19 22:56:21 +0100 |
---|---|---|
committer | jakobst1n <jakob.stendahl@outlook.com> | 2024-01-19 22:56:21 +0100 |
commit | 9141e86c757b06a3613836d1aa4c377a4989eed2 (patch) | |
tree | c925af43350706af81cf5f84fa5c22caf6f2223f /Common/sway/autostart | |
parent | b9513f21ae630ffcb93d68c21eeb70b5eebe74ae (diff) | |
download | dotfiles-9141e86c757b06a3613836d1aa4c377a4989eed2.tar.gz dotfiles-9141e86c757b06a3613836d1aa4c377a4989eed2.zip |
changes
Diffstat (limited to 'Common/sway/autostart')
-rw-r--r-- | Common/sway/autostart | 33 |
1 files changed, 22 insertions, 11 deletions
diff --git a/Common/sway/autostart b/Common/sway/autostart index 9adfafc..faece20 100644 --- a/Common/sway/autostart +++ b/Common/sway/autostart @@ -1,12 +1,23 @@ -#exec rm /tmp/nwg-shell-check-update.lock -#exec wlsunset -l 59.9614 -L 10.925 -t 4500 -T 6500 -g 1.0 -#exec swaync -s /home/jakob/.config/swaync/preset-1.css +# screen locking +exec swayidle timeout 1200 physlock \ + timeout 1800 'swaymsg "output * dpms off"' \ + resume 'swaymsg "output * dpms on"' + +# notification centre +exec swaync + +# system tray applets +exec blueman-applet +exec udiskie exec nm-applet --indicator -#exec_always nwg-autotiling -#exec_always nwg-drawer -r -c 6 -is 64 -fscol 2 -s preset-1.css -term foot -#exec_always nwg-dock -d -p bottom -a center -i 48 -hd 20 -s preset-1.css -#exec_always nwg-panel -c preset-1 -s preset-1.css -#exec_always nwg-shell-check-updates -exec swayidle timeout 1200 nwg-lock timeout 1800 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' -#exec nwg-update-indicator -#exec nwg-shell-config + +# Wayland Overlay Bar, volume/brigtness bar +set $WOBSOCK $XDG_RUNTIME_DIR/wob.sock +exec rm -f $WOBSOCK && mkfifo $WOBSOCK && tail -f $WOBSOCK | wob + +# use clipman for clipboard management +exec wl-paste -t text --watch clipman store --no-persist + +# Nice color hues in the evenings +exec wlsunset -l 59.9614 -L 10.925 -t 4500 -T 6500 -g 1.0 + |