dotfiles-mirror/local/bin/screenie
2026-02-05 03:05:24 +03:30

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"