first commit

This commit is contained in:
Zastian Pretorius
2021-12-08 19:57:06 +02:00
commit 3f96d7a788
821 changed files with 25657 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
#!/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