Dup Goto 📝

sleep-wake-scripts

PT2/linux/systemd 07-31 13:46:40
To Pop
14 lines, 28 words, 308 chars Monday 2023-07-31 13:46:40

See archlinux

Put something in /usr/lib/systemd/system-sleep, for example

#!/bin/sh
case $1/$2 in
  pre/*)
    echo "Going to $2..."
    ;;
  post/*)
    echo "Waking up from $2..."
    ;;
esac