21 lines
476 B
Bash
Executable file
21 lines
476 B
Bash
Executable file
#!/bin/env sh
|
|
|
|
CURSOR="Qogir-dark"
|
|
THEME="Gruvbox-Orange-Dark"
|
|
|
|
if [[ $TARGET_MODE == 'light' ]]; then
|
|
CURSOR="Qogir"
|
|
THEME="Gruvbox-Orange-Light"
|
|
|
|
wal -l --theme base16-gruvbox-medium
|
|
else
|
|
wal --theme base16-gruvbox-medium
|
|
fi
|
|
|
|
hyprctl setcursor ${CURSOR} 32
|
|
|
|
gsettings set org.gnome.desktop.interface color-scheme "prefer-${TARGET_MODE}"
|
|
gsettings set org.gnome.desktop.interface gtk-theme "${THEME}"
|
|
|
|
$HOME/.config/theming/compile.sh
|
|
$HOME/.config/theming/update.sh
|