[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
'