mirror of
https://github.com/caelestia-dots/cli.git
synced 2026-06-06 15:29:28 -05:00
669eaa61cb
Don't complete remove repos, use git pull instead Use XDG_DATA_HOME and XDG_STATE_HOME
16 lines
224 B
Fish
Executable File
16 lines
224 B
Fish
Executable File
#!/bin/fish
|
|
|
|
. (dirname (status filename))/util.fish
|
|
|
|
install-deps git fuzzel-git
|
|
|
|
set -l dist $CONFIG/fuzzel
|
|
|
|
# Clone repo
|
|
update-repo fuzzel $dist
|
|
|
|
# Install systemd service
|
|
setup-systemd-monitor fuzzel $dist
|
|
|
|
log 'Done.'
|