diff options
author | Ted Gould <ted@gould.cx> | 2012-08-17 23:08:01 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2012-08-17 23:08:01 -0500 |
commit | de33f147b69b236db47651935afd35ec17a64683 (patch) | |
tree | b8e5e63294ad3babb549b4719c3d2123fd565914 /freerdp-session | |
parent | 0eb7c8cf572a7925fdb588a662b90a6bd8eeb2e4 (diff) | |
download | lightdm-remote-session-x2go-de33f147b69b236db47651935afd35ec17a64683.tar.gz lightdm-remote-session-x2go-de33f147b69b236db47651935afd35ec17a64683.tar.bz2 lightdm-remote-session-x2go-de33f147b69b236db47651935afd35ec17a64683.zip |
Adding the piece that actually starts the session itself.
Diffstat (limited to 'freerdp-session')
-rwxr-xr-x | freerdp-session | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/freerdp-session b/freerdp-session new file mode 100755 index 0000000..d304a98 --- /dev/null +++ b/freerdp-session @@ -0,0 +1,7 @@ +#!/bin/bash + +if [ -e ~/.freerdp-socket ]; then + cat ~/.freerdp-socket | /usr/bin/xfreerdp --plugin rdpsnd.so --no-nla -f --from-stdin +else + zenity --warning --text="Unable to locate FreeRDP socket" +fi; |