#!/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