chiark / gitweb /
dot/emacs: Bind a key to `magit-toggle-buffer-lock'.
[profile] / bin / xshutdown
... / ...
CommitLineData
1#! /bin/sh
2
3set -e
4answer=$(xmsg -Q -t xshutdown -d "Really shutdown this session?" \
5 "Terminating an X session prematurely can really ruin your day." \
6 =yes:gtk-yes =no:default:cancel:gtk-no)
7case "$answer" in
8 yes)
9 xatom set XINIT_COMMAND !break
10 xatom set XWAIT_DIE XWAIT_DIE_NOW
11 ;;
12esac