Got questions, comments, patches, etc.?
Contact Jason Woofenden
gitweb
/
spectrwm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
make update_iconic() use xcb
[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