First Upload

This commit is contained in:
Sebastian Serfling
2025-09-23 14:52:55 +02:00
commit 554fc9879d
14 changed files with 157 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
[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
'