Files
dotfiles/rofi/.config/rofi-menus/scripts/scrotmenu.sh
Zastian Pretorius 3f96d7a788 first commit
2021-12-08 19:57:06 +02:00

25 lines
405 B
Bash
Executable File

#!/bin/bash
rofi_command="rofi -theme themes/scrotmenu.rasi"
### 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