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