mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 11:22:23 +00:00
14 lines
313 B
Bash
14 lines
313 B
Bash
#!/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
|
|
|