diff options
author | Haoran S. Diao (刁浩然) <0@hairydiode.xyz> | 2023-06-30 03:47:33 -0700 |
---|---|---|
committer | Haoran S. Diao (刁浩然) <0@hairydiode.xyz> | 2023-06-30 03:47:33 -0700 |
commit | fc62e87c7f3c7e14d2a0f22d16074ff2ff17de51 (patch) | |
tree | 1f6e3b05d1c356b62a1b0574c276b7eab39a4f02 /fontd | |
parent | a2e390f8e2348dded6650785c0bba60749903535 (diff) |
Added smarter font directory handling
Diffstat (limited to 'fontd')
-rwxr-xr-x | fontd | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -4,9 +4,12 @@ # display CHAR if found in any bdf fonts in DIR/ # NOTE: CHAR must be in decimal encoding point format of bdf +#expands ~ and *, it's a bit unsafe +eval fonts="$2/*bdf" + #gets font size, it can take multiple fonts as input so only get the first one #and assume they're all the same size -size=$(cat $2/*bdf | grep -m 1 PIXEL_SIZE | awk '{print $2}') +size=$(cat $fonts | grep -m 1 PIXEL_SIZE | awk '{print $2}') #get bdf bitmap info from bdf #fflag ensures only one result even with multiple bdfs, cflag finds the char, |