diff options
-rwxr-xr-x | bin/makelabel.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/makelabel.sh b/bin/makelabel.sh index 7bb0d16..4d02b47 100755 --- a/bin/makelabel.sh +++ b/bin/makelabel.sh @@ -29,7 +29,7 @@ while read -rN 1 c;do yoffset="$(printf '%d - %d\n' $yoffset 10 | bc)" fi if grep "^$name " ${PREFIX}/share/hackvr/font/default.hackvr 2>&1 > /dev/null;then #don't do this shit unless we actually have something to draw. awk in offsetshape bitches when there's nothing. - grep "^$name " ${PREFIX}/share/hackvr/default.hackvr \ + grep "^$name " ${PREFIX}/share/hackvr/font/default.hackvr \ | sed 's/^'"$name"'/'"$target"'/' \ | offsetshape.sh "$xoffset" "$yoffset" "$zoffset" fi |