xdocodepoint - xdocodepoint - Enter a unicodepoint everywhere in X11.
(HTM) git clone git://r-36.net/xdocodepoint
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
xdocodepoint (184B)
---
1 #!/bin/sh
2 #
3 # See the LICENSE for details.
4 #
5 # Copy me if you can.
6 # by 20h
7 #
8
9 codepoint=$(dmenu -p codepoint: </dev/null)
10
11 if [ -n "$codepoint" ];
12 then
13 xdotool key U${codepoint}
14 fi
15