mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 02:04:37 +08:00
10 lines
209 B
Bash
10 lines
209 B
Bash
#!/bin/bash
|
|
|
|
sort -r | while read -r d; do
|
|
[[ -d $d ]] || continue
|
|
mkfontscale "$d"
|
|
mkfontdir "$d"
|
|
find "$d"fonts.{scale,dir} -maxdepth 0 -size -3c -delete
|
|
rmdir --ignore-fail-on-non-empty "$d"
|
|
done
|