mirror of
https://github.com/davatorium/rofi.git
synced 2024-10-27 05:23:18 -04:00
20e55e1e4e
* -matching *method* option instead of -regex, -glob, -fuzzy. * Re-add fuzzy matching pattern. * When there are substrings in regex, only highlight those matches. Fixes: #447
32 lines
501 B
Bash
Executable file
32 lines
501 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
echo -en "nooty\naap\nnoot\nmies" | rofi -matching regex -dmenu > output.txt &
|
|
RPID=$!
|
|
|
|
# send enter.
|
|
sleep 5;
|
|
xdotool key Shift+'6'
|
|
sleep 0.4
|
|
xdotool key 'n'
|
|
sleep 0.4
|
|
xdotool key 'o'
|
|
sleep 0.4
|
|
xdotool key 'o'
|
|
sleep 0.4
|
|
xdotool key 't'
|
|
sleep 0.4
|
|
xdotool key Shift+'4'
|
|
sleep 0.4
|
|
xdotool key Return
|
|
|
|
# Get result, kill xvfb
|
|
wait ${RPID}
|
|
RETV=$?
|
|
OUTPUT=$(cat output.txt)
|
|
if [ "${OUTPUT}" != 'noot' ]
|
|
then
|
|
echo "Got: '${OUTPUT}' expected 'noot'"
|
|
exit 1
|
|
fi
|
|
|
|
exit ${RETV}
|