aboutsummaryrefslogtreecommitdiff
path: root/.local/bin/screenshot.sh
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/screenshot.sh')
-rwxr-xr-x.local/bin/screenshot.sh11
1 files changed, 0 insertions, 11 deletions
diff --git a/.local/bin/screenshot.sh b/.local/bin/screenshot.sh
deleted file mode 100755
index 66d9c5c..0000000
--- a/.local/bin/screenshot.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-# Screenshot via ImageMagick
-# Passes all args down to import command
-
-SCREENSHOTS_DIR=$HOME/Pictures/Screenshots
-FILENAME=$SCREENSHOTS_DIR/$(date +%F_%H-%M-%S).png
-
-echo "$@"
-
-mkdir -p $SCREENSHOTS_DIR
-import $@ $FILENAME && xclip -selection clipboard -target image/png -i < $FILENAME