0e57149de9
NB: this implementation is awfully cut-n-paste one, there are lots of common code with install2 which are subject to careful surgery
16 lines
287 B
Bash
Executable File
16 lines
287 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# remove unused legacy/tiny fonts
|
|
cd /usr/share/fonts/bitmap/misc/ && rm -f *ISO* *KOI* [1456]*
|
|
|
|
# l10n
|
|
cd /usr/share/X11/locale/ && rm -rf *[^C8]/ iso*
|
|
|
|
# xkb
|
|
cd /usr/share/X11/xkb/symbols && rm -rf *_vndr
|
|
|
|
# gconv
|
|
cd /usr/lib*/gconv && rm -f CP* ISO* *JIS* KOI* HP* MAC*
|
|
|
|
:
|