blob: 10df9b7996cbe0d00b5932524da915bd45fe666b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#!/bin/fish
. (dirname (status filename))/util.fish
install-deps git starship fastfetch
set -l dist $C_DATA/fish
# Update/Clone repo
update-repo fish $dist
# Install fish config
confirm-overwrite $CONFIG/fish/config.fish
ln -s $dist/config.fish $CONFIG/fish/config.fish
# Install fish greeting
confirm-overwrite $CONFIG/fish/functions/fish_greeting.fish
mkdir -p $CONFIG/fish/functions
ln -s $dist/fish_greeting.fish $CONFIG/fish/functions/fish_greeting.fish
# Install starship config
confirm-overwrite $CONFIG/starship.toml
ln -s $dist/starship.toml $CONFIG/starship.toml
# Install fastfetch config
confirm-overwrite $CONFIG/fastfetch/config.jsonc
ln -s $dist/fastfetch.jsonc $CONFIG/fastfetch/config.jsonc
log 'Done.'
|