aboutsummaryrefslogtreecommitdiff
path: root/arctica-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 /arctica-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 'arctica-session.in')
-rwxr-xr-xarctica-session.in30
1 files changed, 30 insertions, 0 deletions
diff --git a/arctica-session.in b/arctica-session.in
new file mode 100755
index 0000000..1caec66
--- /dev/null
+++ b/arctica-session.in
@@ -0,0 +1,30 @@
+#!/bin/bash
+
+#
+# Copyright © 2012-2016 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/.arctica-socket";
+if [ -e "$socket" ]; then
+ socat unix-connect:"$socket" - | /usr/bin/arctica-cli --from-stdin 2>&1 | logger -t lightdm-remote-session-arctica --
+else
+ zenity --warning --text="Unable to locate Arctica Session socket"
+fi;
+
+rm -f "$socket"