All checks were successful
Update PKGBUILD version / update-pkgver (push) Successful in 2s
- Add cliphist.service that wipes clipboard history on session start (crash-safe: cleans up at next boot, not at shutdown) - Move kanshi, walker, nautilus services from ~/.config/systemd/user/ to /etc/systemd/user/ (system-level defaults, consistent with moonarch's config philosophy) - Remove cliphist spawn-sh-at-startup from niri config (managed by systemd service now) - Add cliphist to USER_SERVICES in post-install.sh and transform.sh Closes #1
18 lines
424 B
Desktop File
18 lines
424 B
Desktop File
# ABOUTME: systemd user service for kanshi dynamic display configuration.
|
|
# ABOUTME: Starts kanshi as part of the graphical session, with automatic restart.
|
|
|
|
[Unit]
|
|
Description=Dynamic display configuration
|
|
Documentation=man:kanshi(1)
|
|
PartOf=graphical-session.target
|
|
After=graphical-session.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
ExecStart=/usr/bin/kanshi
|
|
Restart=on-failure
|
|
RestartSec=3
|
|
|
|
[Install]
|
|
WantedBy=graphical-session.target
|