25 lines
376 B
Bash
Executable File
25 lines
376 B
Bash
Executable File
#!/bin/bash
|
|
|
|
rofi_command="rofi"
|
|
|
|
### Options ###
|
|
screen=""
|
|
area=""
|
|
window=""
|
|
# Variable passed to rofi
|
|
options="$screen\n$area\n$window"
|
|
|
|
chosen="$(echo -e "$options" | $rofi_command -dmenu -selected-row 1)"
|
|
case $chosen in
|
|
$screen)
|
|
sleep 1; scrot
|
|
;;
|
|
$area)
|
|
scrot -s
|
|
;;
|
|
$window)
|
|
sleep 1; scrot -u
|
|
;;
|
|
esac
|
|
|