2024-05-27 16:57:39 -04:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
|
|
|
|
NEW_THEME=$2
|
|
|
|
|
2025-01-02 21:00:17 -05:00
|
|
|
spicetify config current_theme StarryNight
|
2024-05-27 16:57:39 -04:00
|
|
|
|
|
|
|
if [ $NEW_THEME = "dark" ]; then
|
2025-01-02 21:00:17 -05:00
|
|
|
spicetify config color_scheme Base
|
2024-05-27 16:57:39 -04:00
|
|
|
else
|
2025-01-02 21:00:17 -05:00
|
|
|
spicetify config color_scheme Cotton-candy
|
2024-05-27 16:57:39 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
spicetify apply
|