15 lines
213 B
Bash
Executable File
15 lines
213 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
|
|
NEW_THEME=$2
|
|
|
|
spicetify config current_theme StarryNight
|
|
|
|
if [ $NEW_THEME = "dark" ]; then
|
|
spicetify config color_scheme Base
|
|
else
|
|
spicetify config color_scheme Cotton-candy
|
|
fi
|
|
|
|
spicetify apply
|