mirror of
https://github.com/davatorium/rofi.git
synced 2024-10-27 05:23:18 -04:00
28 lines
374 B
Bash
Executable file
28 lines
374 B
Bash
Executable file
#!/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}
|