dots-of-war/files/.config/bspwm/bspwm_scripts/execute_menu.sh

15 lines
313 B
Bash
Raw Normal View History

2020-06-21 10:41:26 +00:00
#!/bin/bash
options="screenshot\nscreengif"
selected="$(echo -e "$options" | rofi -dmenu -i -theme ~/scripts/rofi-scripts/default_theme.rasi)"
case "$selected" in
screenshot)
~/scripts/screenshot.sh
;;
screengif)
notify-send gif "press M-S-C-g to end gif"
~/scripts/screengif.sh
;;
esac