blob: faece200a293375c3321486bf1d10a203806b4f5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# 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
# 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
|