Skip to content

Instantly share code, notes, and snippets.

@approximatenumber
Created March 26, 2019 12:44
Show Gist options
  • Save approximatenumber/8285f60c928177377d7c8e1f048d51bb to your computer and use it in GitHub Desktop.
Save approximatenumber/8285f60c928177377d7c8e1f048d51bb to your computer and use it in GitHub Desktop.
Small script to suspend your laptop when lid is closed
#!/bin/bash
# Add this script to crontab:
# * * * * * username suspend-when-lid-is-closed.sh
if grep -q closed /proc/acpi/button/lid/LID0/state; then
echo "lid is closed, suspending..." > /tmp/suspend-when-lid-is-closed.log
systemctl suspend
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment