eww-icons/systemd/remmina-watch.service

13 lines
228 B
INI

[Unit]
Description=Check if remmina is running
[Service]
Type=oneshot
ExecStart=/bin/bash -c '
if pgrep -x remmina >/dev/null; then
systemctl --user stop eww-icons.service
else
systemctl --user start eww-icons.service
fi
'