98_Sleep.sh 97 B

12345678
  1. #!/bin/bash
  2. kernel=$(uname -r)
  3. if [[ $kernel == *"5.7"* ]]; then
  4. systemctl suspend
  5. fi
  6. exit 0