mirror of
https://github.com/xsghetti/HyprCrux.git
synced 2025-07-03 13:50:38 -04:00
16 lines
335 B
Bash
Executable file
16 lines
335 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
# set variables
|
|
|
|
ScrDir=`dirname "$(realpath "$0")"`
|
|
source $ScrDir/globalcontrol.sh
|
|
rofThm="${XDG_CONFIG_HOME:-$HOME/.config}/rofi/themes"
|
|
|
|
# regen color conf
|
|
|
|
if [ "$EnableWallDcol" -ne 1 ] ; then
|
|
cp ${rofThm}/${gtkTheme}.rasi ${rofThm}/theme.rasi
|
|
else
|
|
cp ${rofThm}/Wall-Dcol.rasi ${rofThm}/theme.rasi
|
|
fi
|
|
|