first push of my config files
[my-dotfiles.git] / bin / blackpearl-scrotmenu.sh
CommitLineData
fdd76fc5 1#!/bin/bash
2
3rofi_command="rofi -theme blackpearl/scrotmenu.rasi"
4
5### Options ###
6screen=""
7area=""
8window=""
9# Variable passed to rofi
10options="$screen\n$area\n$window"
11
12chosen="$(echo -e "$options" | $rofi_command -dmenu -selected-row 1)"
13case $chosen in
14 $screen)
15 sleep 1; i3-scrot
16 ;;
17 $area)
18 i3-scrot -s
19 ;;
20 $window)
21 sleep 1; i3-scrot -u
22 ;;
23esac
24