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.
24 lines
449 B
24 lines
449 B
5 years ago
|
#!/usr/bin/env sh
|
||
5 years ago
|
INPUT="$(cat)"
|
||
5 years ago
|
|
||
5 years ago
|
pidof svkbd-sxmo || svkbd-sxmo &
|
||
5 years ago
|
|
||
5 years ago
|
RESULT="$(
|
||
|
echo "$(
|
||
|
echo "Close Menu" &&
|
||
|
echo "$INPUT" |\
|
||
|
grep -Eo '\S+' |\
|
||
|
tr -d '[:blank:]' |\
|
||
|
sort |\
|
||
|
uniq
|
||
|
)" | dmenu -p Type -l 10 -i -c -fn Terminus-20
|
||
|
)"
|
||
|
|
||
|
pkill svkbd-sxmo
|
||
5 years ago
|
|
||
|
if [[ "$RESULT" = "Close Menu" ]]; then
|
||
5 years ago
|
exit 0
|
||
5 years ago
|
else
|
||
5 years ago
|
xdotool type "$RESULT"
|
||
5 years ago
|
fi
|