suspend 188 B

123456789
  1. #!/bin/sh
  2. sleep 1 # to move the hands away from keyboard
  3. if [ -d "/run/current-system" ]; then # if GuixSD
  4. sudo /run/current-system/profile/bin/suspend
  5. else
  6. systemctl suspend
  7. fi