14 lines
250 B
Bash
Executable file
14 lines
250 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
waybar &
|
|
|
|
# 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'
|