From 30d8a0ec47fef1cbdf8e19907dcbbc00ab711a8e Mon Sep 17 00:00:00 2001 From: unstable-code Date: Fri, 28 Nov 2025 14:31:05 +0900 Subject: [PATCH] Add systemd user service file installation Added installation of wshowlyrics.service to /usr/lib/systemd/user to support systemd service management introduced in v0.5.3. Users can now manage wshowlyrics with: - systemctl --user enable wshowlyrics.service - systemctl --user start wshowlyrics.service - journalctl --user -u wshowlyrics --- PKGBUILD | 3 +++ 1 file changed, 3 insertions(+) diff --git a/PKGBUILD b/PKGBUILD index 12d90df19f5f..ac3f1966ed3e 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -57,6 +57,9 @@ package() { # Install system-wide configuration file install -Dm644 settings.ini.example "$pkgdir/etc/wshowlyrics/settings.ini" + # Install systemd user service file + install -Dm644 wshowlyrics.service "$pkgdir/usr/lib/systemd/user/wshowlyrics.service" + # Install documentation install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"