Delete wlshot and xshot scripts

This commit is contained in:
2021-11-22 13:26:32 +03:00
parent 7b0eb7a591
commit 86d98610e8
2 changed files with 0 additions and 24 deletions

View File

@@ -1,7 +0,0 @@
#! /bin/bash
action=$1
path="$HOME/Pictures/Screenshots/Screenshot-$(date +%s%3N).png"
grimshot $action area $path

View File

@@ -1,17 +0,0 @@
#! /bin/bash
action=$1
if [ "$action" = "" ] ; then
echo "You need to specify the action to use (copy/save)"
exit
fi
file="$HOME/Pictures/Screenshots/Screenshot-$(date +%s%3N).png"
selection=$(hacksaw -f "-i %i -g %g")
if [ "$action" = "save" ] ; then
shotgun $selection -
else
shotgun $selection - | xclip -t "image/png" -selection clipboard
fi