blob: d7b0d8b527dcd4248c96f5b6b3c319795ff66d8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/fish
. (dirname (status filename))/util.fish
install-deps git btop
set -l dist $CONFIG/btop
# Update/Clone repo
update-repo btop $dist
sed -i 's|$SRC|'$dist'|g' $dist/btop.conf
# Install systemd service
setup-systemd-monitor btop $dist
log 'Done.'
|