public
Description:
Homepage:
Clone URL: git://github.com/bookest/dot_files.git
bookest (author)
Sun May 10 06:41:22 -0700 2009
commit  37a4b480d5a0bba97d7ec7f147a376a5fca5cd84
tree    bd2c385593e436e97366e2e6a93d562df23934ad
parent  b004013a26b8c50ee868ed0761d9ed69e15060a6
dot_files / bash_logout
100644 12 lines (9 sloc) 0.315 kb
1
2
3
4
5
6
7
8
9
10
11
12
### -*- shell-script -*-
 
# invalidate the gpm selection buffer iff logging out from a virtual
# terminal
if [ -x /sbin/consoletype ] && /sbin/consoletype fg; then
    pidfile=/var/run/gpm.pid
    if [ -r $pidfile ] && [ -d "/proc/$(/bin/cat $pidfile)" ]; then
        kill -USR2 "$(/bin/cat $pidfile)"
    fi
fi