mirror of
https://git.sr.ht/~coasteen/dotfiles
synced 2025-11-04 14:47:38 +01:00
6 lines
191 B
Bash
Executable file
6 lines
191 B
Bash
Executable file
#!/bin/bash
|
|
TEMP_FILE=$(mktemp /tmp/screenshot_XXXXXX.png)
|
|
grim -g "$(slurp)" "$TEMP_FILE"
|
|
wl-copy < "$TEMP_FILE"
|
|
notify-send "Screenshot" "Screenshot taken." -i "$TEMP_FILE"
|
|
rm "$TEMP_FILE"
|