blob: d31049d9327afaecc21e087ec375b883f52165df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/fish
. (dirname (status filename))/util.fish
install-deps git hyprland-git hyprpaper-git okolors-git imagemagick wl-clipboard fuzzel-git socat foot jq
install-optional-deps 'vesktop-bin (discord client)' 'btop (system monitor)' 'wf-recorder (screen recorder)' 'grim (screenshot tool)' 'firefox (web browser)' 'spotify-adblock (music player)'
set -l dist $CONFIG/scripts
confirm-overwrite $dist
git clone 'https://github.com/caelestia-dots/scripts.git' $dist
mkdir -p ~/.local/bin
ln -s $dist/main.fish ~/.local/bin/caelestia
log 'Done.'
|