#!/usr/bin/env bash scr_path=~/pics/scrots n=6; output=$(tr -cd '[:alnum:]' < /dev/urandom | head -c$n) if [ "$1" == "" ]; then import -window root "$scr_path/$output.png" notify-send 'screenshot taken!' elif [ "$1" == "-w" ]; then import -window "$(xdotool getwindowfocus)" "$scr_path/$output.png" convert "$scr_path/$output.png" \( +clone -background transparent -shadow 60x40+0+15 \) \ +swap -background white -layers merge +repage "$scr_path/$output.png" notify-send 'window screenshot taken!' # elif [ "$1" == "-s" ]; then fi xclip -selection clipboard -t image/png -i "$scr_path/$output.png"