diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-26 22:02:15 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-26 22:02:15 +1100 |
| commit | 6f331f112f69255303a2df0e91ee74022add4cbf (patch) | |
| tree | ec47e09448346e764156d59101e243ac7d07d69d /install.fish | |
| parent | scheme: gtk theming (diff) | |
| download | caelestia-cli-6f331f112f69255303a2df0e91ee74022add4cbf.tar.gz caelestia-cli-6f331f112f69255303a2df0e91ee74022add4cbf.tar.bz2 caelestia-cli-6f331f112f69255303a2df0e91ee74022add4cbf.zip | |
add readme and install script
Diffstat (limited to '')
| -rwxr-xr-x | install.fish | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/install.fish b/install.fish new file mode 100755 index 0000000..029174c --- /dev/null +++ b/install.fish @@ -0,0 +1,8 @@ +#!/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 |