aboutsummaryrefslogtreecommitdiff
path: root/scripts/.scripts/screenshot.sh
blob: e0bd39f428c79bc1d216b5172c6732e56b5672c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

CHOICE=$(echo -e "Area\nWindow" | dmenu -i -l 2)

if [ "$CHOICE"="Area" ]; then
  gnome-screenshot -a -c
else
  gnome-screenshot -w -c
fi