···1919- **Tells you what it manages.** `appherder list` shows every app it installed, where it checks for updates, and which ones are missing their AppImage.
2020- **Quiet when nothing changed.** Re-installing an unchanged app does nothing. Drop your AppImages in one folder and `appherder sync` lines everything up.
2121- **Syncs automatically.** `appherder autosync` watches `~/AppImages` and installs or removes apps the moment you add or delete a file.
2222+- **Upgrades automatically.** `appherder autoupgrade` checks for and installs updates once a day.
22232324## Installation
2425···5859appherder list # see what's installed
5960appherder sync # match your apps to what's in ~/AppImages
6061appherder autosync # auto-sync on file changes
6262+appherder autoupgrade # auto-upgrade once a day
6163appherder upgrade --check # see what's out of date
6264appherder upgrade # download and install updates
6365appherder migrate # adopt apps another tool set up
···11+[Unit]
22+Description=Download and install available AppImage updates
33+44+[Service]
55+Type=oneshot
66+ExecStart={{BIN}} upgrade
+11
cmd/appherder/systemd/appherder-upgrade.timer
···11+[Unit]
22+Description=Check for AppImage updates daily
33+44+[Timer]
55+# Run once a day, starting from boot so laptops that don't stay on still get it.
66+OnBootSec=5min
77+OnUnitActiveSec=24h
88+Persistent=true
99+1010+[Install]
1111+WantedBy=timers.target