summaryrefslogtreecommitdiff
path: root/bin/.local/bin/screenshot
blob: 107faf7dd30cc58323ed651368d1d630b20a6092 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
screenshot() {
	case $1 in
	full)
		scrot -m
		;;
	window)
		sleep 1
		scrot -s
		;;
	*)
		;;
	esac;
}

screenshot $1