mirror of
https://codeberg.org/andyscott/dotfiles.git
synced 2024-11-08 13:30:47 -05:00
10 lines
346 B
Bash
10 lines
346 B
Bash
#!/bin/bash
|
|
|
|
# Wait on pipewire or "--not-when-audio" will break everything
|
|
until pgrep -u $UID -x pipewire-pulse >/dev/null; do sleep 1; done
|
|
|
|
# lock screen after 10 minutes
|
|
echo "---" | tee -a /tmp/xidlehook.log
|
|
xidlehook --not-when-audio --not-when-fullscreen \
|
|
--timer 600 "xset s activate" "" \
|
|
2>&1 | tee -a /tmp/xidlehook.log & disown
|