diff --git a/bin/wlshot b/bin/wlshot deleted file mode 100755 index a9a5add..0000000 --- a/bin/wlshot +++ /dev/null @@ -1,7 +0,0 @@ -#! /bin/bash - -action=$1 - -path="$HOME/Pictures/Screenshots/Screenshot-$(date +%s%3N).png" - -grimshot $action area $path diff --git a/bin/xshot b/bin/xshot deleted file mode 100755 index 1343173..0000000 --- a/bin/xshot +++ /dev/null @@ -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