wok view dropbear/stuff/sshx @ rev 11003

Up: audacious to 3.0.3.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Oct 13 03:09:20 2011 +0000 (2011-10-13)
parents 409cb72cb3e0
children 0078fa9a46a4
line source
1 #!/bin/sh
3 xdbclient()
4 {
5 read host type data
6 svr=$(echo $DISPLAY | sed 's/.*:\([0-9]*\).*/\1/')
7 n=$((10+$svr)); dpy=localhost:$n
8 dbclient -R $((6000+$n)):localhost:$((6000+$svr)) "$@" \
9 "xauth add $dpy $type $data; export DISPLAY=$dpy; $TERM"
10 }
12 case "$DISPLAY" in
13 '') dbclient "$@" ;;
14 *) xauth list $DISPLAY | xdbclient "$@" ;;
15 esac