13 lines
228 B
Desktop File
13 lines
228 B
Desktop File
[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
|
|
'
|