mirror of
https://github.com/vale981/spectrwm
synced 2025-03-04 09:21:39 -05:00
18 lines
131 B
Bash
18 lines
131 B
Bash
#!/bin/sh
|
|
#
|
|
|
|
screenshot() {
|
|
case $1 in
|
|
full)
|
|
scrot -m
|
|
;;
|
|
window)
|
|
sleep 1
|
|
scrot -s
|
|
;;
|
|
*)
|
|
;;
|
|
esac;
|
|
}
|
|
|
|
screenshot $1
|