Hi I’m use xorg-xrdb package for change themes xrdb ~/.Xresources
in Xresoures #include “/full/path/to/themes/*.res” #include “/full/path/to/themes/template.txt” works fine but I find script and no idea how this work maybe some one help. Thanks
#!/bin/sh
CFG_DIR=$1
if [ “$CFG_DIR” == “” ]; then
CFG_DIR=${XDG_CONFIG_HOME:-${HOME}/.config}/themes
fi
if [ ! -e “$CFG_DIR” ]; then
echo “Add theme files to $CFG_DIR”
exit
fi