mirror of
https://github.com/caelestia-dots/cli.git
synced 2026-06-05 14:59:29 -05:00
9 lines
275 B
Fish
Executable File
9 lines
275 B
Fish
Executable File
#!/bin/fish
|
|
|
|
set -q XDG_CONFIG_HOME && set -l config $XDG_CONFIG_HOME/caelestia || set -l config ~/.config/caelestia
|
|
set -l dist $config/scripts
|
|
|
|
git clone https://github.com/caelestia-dots/scripts.git $dist
|
|
mkdir -p ~/.local/bin
|
|
ln -s $dist/main.fish ~/.local/bin/caelestia
|