mirror of
https://github.com/caelestia-dots/cli.git
synced 2026-06-06 07:19:29 -05:00
19 lines
287 B
Fish
Executable File
19 lines
287 B
Fish
Executable File
#!/usr/bin/env fish
|
|
|
|
. (dirname (status filename))/util.fish
|
|
|
|
install-deps git slurp
|
|
|
|
set -l dist $C_DATA/slurp
|
|
|
|
# Clone repo
|
|
update-repo slurp $dist
|
|
|
|
# Install systemd service
|
|
setup-systemd-monitor slurp $dist
|
|
|
|
# Install to path
|
|
install-link $dist/slurp ~/.local/bin/slurp
|
|
|
|
log 'Done.'
|