breadbox/packaging/breadbox-sync.service
Breadway a6bba2c362 breadbox: fix packaged systemd unit ExecStart path
The PKGBUILD installs breadbox-sync to /usr/bin, but the packaged unit
pointed at %h/.cargo/bin/breadbox-sync — a path that only exists for
cargo installs. A pacman install shipped a unit that could never find
its binary. bakery-based installs already patch ExecStart at install
time, so this only affects the pacman channel, but it needed fixing
there.
2026-07-17 03:18:38 +08:00

15 lines
315 B
Desktop File

[Unit]
Description=Breadbox icon sync
Documentation=https://github.com/breadway/breadbox
After=network.target
[Service]
Type=oneshot
ExecStart=/usr/bin/breadbox-sync
StandardOutput=journal
StandardError=journal
# Allow up to 2 minutes for slow icon downloads
TimeoutStartSec=120
[Install]
WantedBy=default.target