mass update.
[my-dotfiles.git] / bin / blackpearl-scrotmenu.sh
CommitLineData
fdd76fc5 1#!/bin/bash
2
7abef725 3rofi_command="rofi -theme darknix/scrotmenu.rasi"
fdd76fc5 4
5### Options ###
6screen=""
7area=""
fdd76fc5 8# Variable passed to rofi
7abef725 9options="$screen\n$area"
fdd76fc5 10
11chosen="$(echo -e "$options" | $rofi_command -dmenu -selected-row 1)"
12case $chosen in
13 $screen)
7abef725 14 i3-scrot -d 3
fdd76fc5 15 ;;
16 $area)
17 i3-scrot -s
18 ;;
fdd76fc5 19esac