mirror of
https://github.com/mrfluffy-dev/dotfiles.git
synced 2026-01-17 13:50:34 +00:00
first commit
This commit is contained in:
24
rofi/.config/rofi-menus/scripts/scrotmenu.sh
Executable file
24
rofi/.config/rofi-menus/scripts/scrotmenu.sh
Executable 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
|
||||
|
||||
Reference in New Issue
Block a user