blob: ac1b5d23fdeb5635c52ec8d6b09b33271b60847d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
file="$HOME/Pictures/screenshots/$(date +%Y-%m-%d-%H:%M:%S)-screenshot.png"
scrot -s "$file"
#dunstify -t 1000 -a "Screenshot taken" -u low -i screenshot-recorded-symbolic \
# -h string:x-dunst-stack-tag:Image "Microphone unmuted"
dunstify -t 1000 -a "Screenshot taken" -u low -I "$file" \
-h string:x-dunst-stack-tag:Image ""
#nsxiv "$file"
|