mirror of
https://github.com/luzifer-aur/nerd-fonts-dejavu-complete.git
synced 2024-11-08 13:50:02 +00:00
28 lines
326 B
Text
28 lines
326 B
Text
msg() {
|
||
|
||
echo -en "[1;34m::[0;1m ${@}[0m"
|
||
|
||
}
|
||
|
||
post_install() {
|
||
|
||
msg 'Updating font cache...'
|
||
fc-cache -s > /dev/null 2>&1
|
||
mkfontscale /usr/share/fonts/TTF > /dev/null 2>&1
|
||
mkfontdir /usr/share/fonts/TTF > /dev/null 2>&1
|
||
echo ' done!'
|
||
|
||
}
|
||
|
||
post_upgrade() {
|
||
|
||
post_install
|
||
|
||
}
|
||
|
||
post_remove() {
|
||
|
||
post_install
|
||
|
||
}
|
||
|