blob: c340f62f0033fd9d0419dc9693d91ed5178ec3e8 (
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
|
#!/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
install-link $dist/config.fish $CONFIG/fish/config.fish
# Install fish greeting
install-link $dist/fish_greeting.fish $CONFIG/fish/functions/fish_greeting.fish
# Install starship config
install-link $dist/starship.toml $CONFIG/starship.toml
# Install fastfetch config
install-link $dist/fastfetch.jsonc $CONFIG/fastfetch/config.jsonc
log 'Done.'
|