Updating? #144
Replies: 1 comment 1 reply
-
Note If you installed caelestia via the install script, the shell and cli are both installed via the AUR, so you shouldn't be editing those in the first place. Editing the shellIf you want to make your own changes to the shell, you can fork the repo and clone it to You can then update it using A working example using Github CLI: gh repo fork caelestia-dots/shell --remote=true --clone=true
mkdir -p ~/.config/quickshell
mv shell ~/.config/quickshell/caelestia Editing the cliIf you want to make your own changes to the cli, you can fork the repo and clone it anywhere you want. Then, create a file in You can then update it using # ~/.local/bin/caelestia
#!/usr/bin/env sh
/path/to/repo/run.sh "$@" A working example using Github CLI: gh repo fork caelestia-dots/cli --remote=true --clone=true
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.profile
mkdir -p ~/.local/bin
echo '#!/usr/bin/env sh' > ~/.local/bin/caelestia
echo "$(pwd)"'/cli/run.sh "$@"' >> ~/.local/bin/caelestia Editing other configsThe caelestia repo's configs are not installed as system configs, instead they are symlinked to the config folders. To make your own changes, just create a fork and run the install script from there. You can then update it using A working example using Github CLI: gh repo fork caelestia-dots/caelestia --remote=true --clone=true
./caelestia/install.fish |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Minor Issue
how do i update caelestia without removing all my custom configs?
Beta Was this translation helpful? Give feedback.
All reactions