wok view dropbear/stuff/sshx @ rev 11145

Up: gobject-introspection to 1.30.0.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Oct 26 21:22:53 2011 +0000 (2011-10-26)
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