blob: 5dcf99bc684a3e627367ce0c2403615c2d709a7d (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
DIR="$HOME/Pictures/Screenshots"
FILE="$DIR/shot_$(date +%s).png"
mkdir -p "$DIR"
maim -s "$FILE"
xclip -selection clipboard -t image/png -i "$FILE"
notify-send "Region Captured" "Saved and copied to clipboard"
|