You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
254 B
17 lines
254 B
5 years ago
|
#!/usr/bin/env sh
|
||
|
sxmo_keyboard.sh on &
|
||
|
|
||
|
cat |\
|
||
|
grep -Eo '\\S+' |\
|
||
|
tr -d '[:blank:]' |\
|
||
|
sort |\
|
||
|
uniq |\
|
||
|
dmenu -p Type -l 10 -i -c -fn Terminus-20
|
||
|
|
||
|
sxmo_keyboard.sh off
|
||
|
|
||
|
if [[ "$RESULT" = "Close Menu" ]]; then
|
||
|
else
|
||
|
xargs -I CC xdotool type "$RESULT"
|
||
|
fi
|