23 lines
310 B
Bash
Executable File
23 lines
310 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
last_state=""
|
|
|
|
while IFS= read -r line
|
|
do
|
|
case "$line" in
|
|
BLANK*)
|
|
;;
|
|
|
|
LOCK*)
|
|
xfconf-query -c xfce4-notifyd -p /do-not-disturb -s true
|
|
;;
|
|
|
|
UNBLANK*)
|
|
xfconf-query -c xfce4-notifyd -p /do-not-disturb -s false
|
|
;;
|
|
esac
|
|
done < <(xscreensaver-command -watch)
|
|
|
|
|
|
# vim: ft=bash
|