aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/.scripts/menugrim
blob: 6575487b3f7812107bb320c9ddde92f848ab809b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/sh

if ! [ -d $SCROT_DIR ]; then
	mkdir -p $SCROT_DIR
fi

# Source settings from .bemenurc
. $HOME/.bemenurc

notify_saved() {
    notify-send "screenshot has been saved in $SCROT_DIR" ;
}

notify_copied() {
    notify-send "screenshot has been copied to clipboard" ;
}

case "$1" in
    --quick|-q)
        grim $SCROT_DIR/fullscreen-"$(date '+%y%m%d-%H%M-%S').png"; notify_saved ;;
    *)
        case "$(printf "a selected area\ncurrent window\nfull screen\na selected area (copy)\ncurrent window (copy)\nfull screen (copy)\n" | bemenu -l 6 -i -p "Screenshot which area?" $BEMENU_OPTIONS)" in
            "a selected area") grim -g "$(slurp)" $SCROT_DIR/selected-"$(date '+%y%m%d-%H%M-%S').png"; notify_saved ;;
            "current window") grim -g "$(swaygetcurrentwindow)" $SCROT_DIR/window-"$(date '+%y%m%d-%H%M-%S').png"; notify_saved ;;
            "full screen") grim $SCROT_DIR/fullscreen-"$(date '+%y%m%d-%H%M-%S').png"; notify_saved ;;
            "a selected area (copy)") grim -g "$(slurp)" - | wl-copy; notify_copied ;;
            "current window (copy)") grim -g "$(swaygetcurrentwindow)" - | wl-copy; notify_copied ;;
            "full screen (copy)") grim - | wl-copy; notify_copied ;;
            *) exit 0 ;;
        esac
esac