diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-04-09 19:26:47 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-04-09 19:26:47 +1000 |
| commit | 5bbead188a155482eacc902f6562955e771c018f (patch) | |
| tree | 6113ba665e501b4bb845c62fc5a957b9486d1ef5 /install/spicetify.fish | |
| parent | wallpaper: no blurred wallpaper (diff) | |
| download | caelestia-cli-5bbead188a155482eacc902f6562955e771c018f.tar.gz caelestia-cli-5bbead188a155482eacc902f6562955e771c018f.tar.bz2 caelestia-cli-5bbead188a155482eacc902f6562955e771c018f.zip | |
install: add spicetify
Also use spicetify as default music player for toggles
Diffstat (limited to 'install/spicetify.fish')
| -rwxr-xr-x | install/spicetify.fish | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/install/spicetify.fish b/install/spicetify.fish new file mode 100755 index 0000000..fb5e6e0 --- /dev/null +++ b/install/spicetify.fish @@ -0,0 +1,21 @@ +#!/bin/fish + +. (dirname (status filename))/util.fish + +install-deps git spicetify-cli + +set -l dist $C_DATA/spicetify + +# Clone repo +update-repo spicetify $dist + +# Install systemd service +setup-systemd-monitor spicetify $dist + +# Install theme files +mkdir -p $CONFIG/spicetify/Themes/caelestia +cp $dist/color.ini $CONFIG/spicetify/Themes/caelestia/color.ini +cp $dist/user.css $CONFIG/spicetify/Themes/caelestia/user.css + +# Set spicetify theme +spicetify config current_theme caelestia color_scheme caelestia |