diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-05-08 15:06:49 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-05-08 15:06:49 +0200 |
commit | dcfddd2f3e5d72b43d24c84a3a06434479425322 (patch) | |
tree | 9b013a902ef1f0cdb1b6a87a5f93ab1b8b106e13 | |
parent | 2894b2eda6df73805288bda4ef488abefbe82b78 (diff) | |
download | lightdm-remote-session-x2go-dcfddd2f3e5d72b43d24c84a3a06434479425322.tar.gz lightdm-remote-session-x2go-dcfddd2f3e5d72b43d24c84a3a06434479425322.tar.bz2 lightdm-remote-session-x2go-dcfddd2f3e5d72b43d24c84a3a06434479425322.zip |
x2go-session.in: Re-format pyhoca-cli command call.
-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; |