chiark
/
gitweb
/
~mdw
/
profile
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
bin/start-ssh-agent: Search for agents in some more places.
[profile]
/
bin
/
xshutdown
1
#! /bin/sh
2
3
set -e
4
answer=$(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)
7
case "$answer" in
8
yes)
9
xatom set XINIT_COMMAND !break
10
xatom set XWAIT_DIE XWAIT_DIE_NOW
11
;;
12
esac