mirror of
https://git.sr.ht/~coasteen/dotfiles
synced 2026-02-06 15:13:45 +01:00
8 lines
222 B
Bash
Executable file
8 lines
222 B
Bash
Executable file
#!/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"
|