1 configs=('10-lcd-filter.conf')
4 echo -n "updating font cache... "
6 pushd /etc/fonts/conf.d > /dev/null
7 for config in "${configs[@]}"; do
8 ln -sf ../conf.avail/${config} .
16 echo -n "updating font cache... "
22 # Link new config files not present on system yet
23 echo -n "Symlinking new configuration files... "
24 pushd /etc/fonts/conf.d > /dev/null
25 for config in "${configs[@]}"; do
26 if [ ! -f ../conf.avail/${config} ]; then
27 ln -sf ../conf.avail/${config} .
35 pushd /etc/fonts/conf.d > /dev/null
36 for config in "${configs[@]}"; do