Files
arthur-os/bin/omarchy-restart-swayosd
T

10 lines
289 B
Bash
Executable File

#!/bin/bash
# omarchy:summary=Restart the SwayOSD server
systemctl --user daemon-reload
systemctl --user stop swayosd-server.service || true
pkill -x swayosd-server || true
systemctl --user reset-failed swayosd-server.service || true
systemctl --user enable --now swayosd-server.service