JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
bigger bar, no horiz-stack, no wrap on focus-master
[spectrwm.git] / screenshot.sh
1 #!/bin/sh
2 #
3
4 screenshot() {
5         case $1 in
6         full)
7                 scrot -m
8                 ;;
9         window)
10                 sleep 1
11                 scrot -s
12                 ;;
13         *)
14                 ;;
15         esac;
16 }
17
18 screenshot $1