diff options
Diffstat (limited to 'bin/.local/bin/screenshot')
-rwxr-xr-x | bin/.local/bin/screenshot | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/bin/.local/bin/screenshot b/bin/.local/bin/screenshot deleted file mode 100755 index 56310fc..0000000 --- a/bin/.local/bin/screenshot +++ /dev/null | |||
@@ -1,16 +0,0 @@ | |||
1 | #!/bin/bash | ||
2 | screenshot() { | ||
3 | case $1 in | ||
4 | f*) | ||
5 | scrot -m -e 'mv $f ~/scrots' | ||
6 | ;; | ||
7 | w*) | ||
8 | sleep 1 | ||
9 | scrot -s -e 'mv $f ~/scrots' | ||
10 | ;; | ||
11 | *) | ||
12 | ;; | ||
13 | esac; | ||
14 | } | ||
15 | |||
16 | screenshot $1 | ||