1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-18 13:54:36 -05:00

use config.rasi file if present

This commit is contained in:
Rasmus Steinke 2017-09-09 12:04:09 +02:00
parent 9b0a430fd4
commit 3f3e4c691f

View file

@ -167,12 +167,17 @@ function set_theme()
then
mkdir -p ${CDIR}
fi
if [ -f "${CDIR}/config" ]
if [ -f "${CDIR}/config.rasi" ]
then
${SED} -i "/rofi\.theme: .*\.rasi$/d" "${CDIR}/config"
fi
echo "rofi.theme: ${1}" >> "${CDIR}/config"
${SED} -i "/@import.*/d" "${CDIR}/config.rasi"
echo "@import \"${1}\"" >> "${CDIR}/config.rasi"
else
if [ -f "${CDIR}/config" ]
then
${SED} -i "/rofi\.theme: .*\.rasi$/d" "${CDIR}/config"
fi
echo "rofi.theme: ${1}" >> "${CDIR}/config"
fi
}
############################################################################################################