mirror of
https://github.com/caelestia-dots/cli.git
synced 2026-06-06 07:19:29 -05:00
06ace6a6ac
Fix gtk + links
25 lines
533 B
Fish
Executable File
25 lines
533 B
Fish
Executable File
#!/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.'
|