aboutsummaryrefslogtreecommitdiff
path: root/config/i3/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'config/i3/scripts')
-rwxr-xr-xconfig/i3/scripts/shutdown13
1 files changed, 13 insertions, 0 deletions
diff --git a/config/i3/scripts/shutdown b/config/i3/scripts/shutdown
new file mode 100755
index 0000000..62f6ae1
--- /dev/null
+++ b/config/i3/scripts/shutdown
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+export SUDO_ASKPASS=/tmp/shutdown-askpass.sh
+
+
+echo '#!/bin/sh
+echo "SETDESC Please enter password to shutdown system
+SETPROMPT Password:
+SETTITLE Sudo password for system shutdown
+GETPIN" | pinentry | grep -E "^D " | sed "s/^D //"' > $SUDO_ASKPASS
+chmod +x $SUDO_ASKPASS
+
+sudo -A shutdown -h now