2021-08-11 22:36:36 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
RUNNING=$(pgrep yubioath-deskto)
|
|
|
|
|
|
|
|
if [ "$RUNNING" ]; then
|
2023-01-06 19:41:31 +00:00
|
|
|
kill $RUNNING
|
|
|
|
sudo systemctl stop pcscd.socket
|
|
|
|
sudo systemctl restart pcscd.service
|
|
|
|
sudo systemctl start pcscd.socket
|
2021-08-11 22:36:36 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
QT_QPA_PLATFORMTHEME=qt5ct QT_QPA_PLATFORM=wayland QT_PLUGIN_PATH=/usr/lib/qt/plugins /usr/bin/yubioath-desktop &
|