Tag: synergy

startup synergy client before login (xfce)
02/06/2014
Want to start synergy before the login screen?
Create a file in : /usr/local/bin
1 2 3 4 5 |
#!/bin/bash # # START SYNERGY CLIENT # synergyc 192.168.1.33 |
then chmod +x it.
Add a line to the file in /etc/rc.local just before “exit 0” to execute the script at boot and before the login screen.
Share the post "startup synergy client before login (xfce)"
Synergy on raspberry pi
19/08/2013
Some how I couldnt get the synergyc command te run at GUI startup.
This worked for me:
Created a script called “startsynergy.sh” in my /scripts/ folder
1 2 3 4 5 |
#!/bin/bash # # START SYNERGY CLIENT # synergyc 192.168.1.33 |
chmod it:
1 |
chmod +x startsynergy.sh |
Edit autostart:
1 |
sudo nano /etc/xdg/lxsession/LXDE/autostart |
And add it at the last line..
1 |
@bash /home/pi/scripts/startsynergy.sh |
Thats is. There are many roads to Rome and I took this ride 🙂
Share the post "Synergy on raspberry pi"