shutdown_handler.sh 129 B

123456
  1. #!/bin/bash
  2. if zenity --question --text 'Shutdown?' --ok-label 'Shutdown' --cancel-label 'Cancel'; then
  3. exec sudo poweroff
  4. fi