mirror of
https://github.com/lbonn/rofi
synced 2024-11-22 11:53:11 +00:00
parent
cac2eb1a7f
commit
274f2297aa
1 changed files with 7 additions and 2 deletions
|
@ -178,12 +178,17 @@ function set_theme()
|
|||
${SED} -i "/@import.*/d" "${get_link}"
|
||||
echo "@import \"${1}\"" >> "${get_link}"
|
||||
else
|
||||
if [ -f "${CDIR}/config" ]
|
||||
if [ ! -e "${CDIR}/config" ]
|
||||
then
|
||||
# No file.
|
||||
echo "rofi.theme: ${1}" >> "${CDIR}/config"
|
||||
elif [ -f "${CDIR}/config" ]
|
||||
then
|
||||
# Regular file
|
||||
get_link=$(readlink -f "${CDIR}/config")
|
||||
${SED} -i "/rofi\.theme: .*\.rasi$/d" "${get_link}"
|
||||
echo "rofi.theme: ${1}" >> "${get_link}"
|
||||
fi
|
||||
echo "rofi.theme: ${1}" >> "${get_link}"
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue