From: sev Date: Sat, 12 Mar 2022 01:11:11 +0000 (-0600) Subject: install.sh: devnull mkfont* head to suppress error X-Git-Url: https://git.sev.monster/~sev/dotfiles.git/commitdiff_plain/456bc1f80b59f8e71ba29e08aedcd24a550aabec?ds=inline install.sh: devnull mkfont* head to suppress error --- diff --git a/install.sh b/install.sh index fd83604..32e5b61 100755 --- a/install.sh +++ b/install.sh @@ -56,10 +56,10 @@ find gui -mindepth 1 -maxdepth 1 | while read -r x; do find $x -mindepth 1 -maxdepth 2 -type d | while read -r x; do which mkfontscale >$devnull 2>&1 && mkfontscale "$x" which mkfontdir >$devnull 2>&1 && mkfontdir "$x" - [ "$(head -1 "$x/fonts.dir")" = 0 ] && - rm "$x/fonts.dir" - [ "$(head -1 "$x/fonts.scale")" = 0 ] && + [ "$(head -1 "$x/fonts.scale" >$devnull 2>&1)" = 0 ] && rm "$x/fonts.scale" + [ "$(head -1 "$x/fonts.dir" >$devnull 2>&1)" = 0 ] && + rm "$x/fonts.dir" done elif [ "$x" = gui/icons ]; then find $x -mindepth 1 -maxdepth 2 -type d | while read -r x; do