blob: e95786fc18f5a2e9dbf7deebe944f13d235d71ba (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
if [ -e ~/.x2go-socket ]; then
@libexecdir@/socket-sucker | /usr/bin/pyhoca-cli --from-stdin
else
zenity --warning --text="Unable to locate X2GoSession/PyHoca socket"
fi;
rm -f ~/.x2go-socket
|