Skip to content

Instantly share code, notes, and snippets.

@kwart
Last active January 28, 2018 17:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kwart/45556cfad93b4f275778301b39b69049 to your computer and use it in GitHub Desktop.
Save kwart/45556cfad93b4f275778301b39b69049 to your computer and use it in GitHub Desktop.
Dialog based script which shuts down the machine after given amount of time.
if timeoutMin=$(zenity --entry --text "Shutdown in (min)" --entry-text "30" --title "Shutdown?"); then
sudo shutdown -P ${timeoutMin}
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment