summaryrefslogtreecommitdiff
path: root/monitor-suspend.sh
blob: 11f3ba1b851cb30cd72cba41ece13c3b038e79de (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
case $XDG_SESSION_TYPE in
  "wayland")
    pgrep -c swayidle && sleep 0.1 && pkill -SIGUSR1 swayidle && exit 0
    notify-send "swayidle not running" && exit 1
    ;;
  "x11")
    xset dpms force suspend
    ;;
esac