Is there a simple way to autostart barrier in a way that I can use it to login from my desktop into my laptop? I followed this guide: https://itsfoss.com/keyboard-mouse-s...een-computers/ and then made the following service which does start, and does connect, but only AFTER I login.
Am I missing something here that's not allowing it to fire up barrier in such a way that it allows me to use my desktop keyboard and mouse on my laptop prior to login? Others say they've gotten it working using KDE's KDM login system, but I can't seem to get it to work. Any thoughts or ideas on what I'm missing or have wrong is welcome.
[Unit]
Description=Barrier Client mouse/keyboard share
Requires=display-manager.service
After=display-manager.service
StartLimitIntervalSec=0
[Service]
Type=simple
ExecStart=/usr/bin/barrierc -f --name Toshiba --enable-crypto 192.168.0.3:24800
Restart=always
RestartSec=10
User=raiden
[Install]
WantedBy=multi-user.target
Description=Barrier Client mouse/keyboard share
Requires=display-manager.service
After=display-manager.service
StartLimitIntervalSec=0
[Service]
Type=simple
ExecStart=/usr/bin/barrierc -f --name Toshiba --enable-crypto 192.168.0.3:24800
Restart=always
RestartSec=10
User=raiden
[Install]
WantedBy=multi-user.target
Comment