mirror of
https://github.com/davatorium/rofi.git
synced 2024-10-27 05:23:18 -04:00
29 lines
374 B
Bash
29 lines
374 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
export ROFI_PNG_OUTPUT=out.png
|
||
|
rofi -show run &
|
||
|
RPID=$!
|
||
|
|
||
|
# send enter.
|
||
|
sleep 5;
|
||
|
xdotool key 't'
|
||
|
sleep 0.4
|
||
|
xdotool key 'r'
|
||
|
sleep 0.4
|
||
|
xdotool key 'u'
|
||
|
sleep 0.4
|
||
|
xdotool key Alt+Shift+s
|
||
|
sleep 0.4
|
||
|
xdotool key Return
|
||
|
|
||
|
# Get result, kill xvfb
|
||
|
wait ${RPID}
|
||
|
RETV=$?
|
||
|
|
||
|
if [ ! -f out.png ]
|
||
|
then
|
||
|
echo "Failed to create screenshot"
|
||
|
exit 1
|
||
|
fi
|
||
|
exit ${RETV}
|