From 297c55572841917ae62a0165c92762d64b066b95 Mon Sep 17 00:00:00 2001 From: Sho Date: Sat, 1 Aug 2026 21:15:27 +0900 Subject: [PATCH] feat(systemd): add quickshell.service referencing ~/.config/quickshell --- quickshell/quickshell.service | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 quickshell/quickshell.service diff --git a/quickshell/quickshell.service b/quickshell/quickshell.service new file mode 100644 index 0000000..3d2070c --- /dev/null +++ b/quickshell/quickshell.service @@ -0,0 +1,13 @@ +[Unit] +Description=QuickShell Desktop Shell Ecosystem +After=graphical-session.target +PartOf=graphical-session.target + +[Service] +ExecStart=/usr/bin/quickshell -p %h/.config/quickshell +Restart=always +RestartSec=2 +Environment=QT_QPA_PLATFORM=wayland + +[Install] +WantedBy=graphical-session.target