17 lines
310 B
Plaintext
17 lines
310 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
wlsunset -S 8:00 -s 23:30 &
|
||
|
waybar &
|
||
|
nm-applet --indicator &
|
||
|
dunst &
|
||
|
|
||
|
# void linux specific setup
|
||
|
if test -f ~/.config/river/void-setup; then
|
||
|
exec ~/.config/river/void-setup
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
exec swayidle -w \
|
||
|
timeout 600 'swaylock -f -c 14171d' \
|
||
|
before-sleep 'swaylock -f -c 14171d'
|