blob: 3b3bcb4ebffbefff5de940b049f6044053c967ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/env 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.'
|