aboutsummaryrefslogtreecommitdiff
path: root/x2go-session.in
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2016-10-09 01:38:43 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2016-10-09 01:38:43 +0200
commit1ab1c7dafaef78c472b5f67a1fefe450f87e4ccb (patch)
tree8a8faebdd39ee73cfda6544d7303f2aa07c0e42e /x2go-session.in
parentae03b1c6969e93f3eba4820e54c7f00b89c1f7ab (diff)
downloadlightdm-remote-session-arctica-1ab1c7dafaef78c472b5f67a1fefe450f87e4ccb.tar.gz
lightdm-remote-session-arctica-1ab1c7dafaef78c472b5f67a1fefe450f87e4ccb.tar.bz2
lightdm-remote-session-arctica-1ab1c7dafaef78c472b5f67a1fefe450f87e4ccb.zip
lightdm-remote-session-arctica: Fork from latest known version of lightdm-remote-session-x2go.
Diffstat (limited to 'x2go-session.in')
-rwxr-xr-xx2go-session.in30
1 files changed, 0 insertions, 30 deletions
diff --git a/x2go-session.in b/x2go-session.in
deleted file mode 100755
index 787f163..0000000
--- a/x2go-session.in
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/bash
-
-#
-# Copyright © 2012-2013 Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
-# Copyright © 2012 Canonical Ltd.
-#
-# This program is free software: you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 3, as
-# published by the Free Software Foundation.
-#
-# This program is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranties of
-# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
-# PURPOSE. See the GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License along
-# with this program. If not, see <http://www.gnu.org/licenses/>.
-#
-# Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
-# Author lightdm-remote-session-freerdp (where we forked from): Ted Gould <ted@canonical.com>
-#
-
-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 --
-else
- zenity --warning --text="Unable to locate X2GoSession/PyHoca socket"
-fi;
-
-rm -f "$socket"