Improve unicode script dmenu prompt

This commit is contained in:
Talia 2020-02-03 17:28:44 +01:00
parent a7ccd4b43d
commit 2603d82fe7
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ then
| sed -n -e '/<.*>/d' -e '/^[0-9A-F]\+/p' \
| cp2utf8 > "$namelist" || exit
fi
codepoint=$(cat "$namelist" | sed -e 's/\t/ /g' | dmenu -i -l 20 -b | awk '{print $1}' | grep '^[0-9A-F]\+')
codepoint=$(cat "$namelist" | sed -e 's/\t/ /g' | dmenu -p "Unicode: " -i -l 20 | awk '{print $1}' | grep '^[0-9A-F]\+')
if [ -z "$codepoint" ];
then echo No codepoint selected >&2; exit
fi