diff options
-rwxr-xr-x | x2go-session.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/x2go-session.in b/x2go-session.in index 787f163..c0fa7d6 100755 --- a/x2go-session.in +++ b/x2go-session.in @@ -22,7 +22,13 @@ socket="$HOME/.x2go-socket"; if [ -e "$socket" ]; then - socat unix-connect:"$socket" - | /usr/bin/pyhoca-cli --from-stdin --add-to-known-hosts --kbd-type auto --sound pulse 2>&1 | logger -t lightdm-remote-session-x2go -- + socat unix-connect:"$socket" - | /usr/bin/pyhoca-cli --from-stdin \ + --add-to-known-hosts \ + --kbd-type auto \ + --sound pulse \ + 2>&1 \ + \ + | logger -t lightdm-remote-session-x2go -- else zenity --warning --text="Unable to locate X2GoSession/PyHoca socket" fi; |