36 lines
814 B
Plaintext
36 lines
814 B
Plaintext
### Start Nextcloud.
|
|
exec nextcloud
|
|
|
|
### Make things a little easier easier on the eyes.
|
|
exec redshift
|
|
|
|
### Notifications
|
|
# https://github.com/emersion/mako
|
|
exec mako
|
|
|
|
### Autotiling
|
|
# https://github.com/nwg-piotr/autotiling
|
|
exec --no-startup-id autotiling
|
|
|
|
### Idle configuration
|
|
exec swayidle -w \
|
|
timeout 285 'light -I && light -S 5' \
|
|
resume 'light -O' \
|
|
timeout 300 'swaylock-fancy' \
|
|
timeout 600 'swaymsg "output * dpms off"' \
|
|
resume 'swaymsg "output * dpms on"' \
|
|
before-sleep 'swaylock-fancy'
|
|
|
|
# wob configuration
|
|
exec_always {
|
|
killall -q wob || true
|
|
mkfifo /tmp/wobpipe
|
|
tail -f /tmp/wobpipe | ~/.config/sway/scripts/sanitize_wob | wob
|
|
}
|
|
|
|
### Clipboard manager
|
|
# https://github.com/yory8/clipman
|
|
#exec clipman -d
|
|
|
|
# vim: ft=cfg
|