blob: ecc60dc58d66ce2ed4786ab859ff9dc4f23750c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/env bash
if [[ $1 = "full" ]]; then
maim -u | tee $HOME/Pictures/Screenshots/$(date +%F-%H%M%S)_maim.png | xclip -selection clipboard -t image/png
elif [[ $1 = "fullwait" ]]; then
sleep 5 && maim -u | tee $HOME/Pictures/Screenshots/$(date +%F-%H%M%S)_maim.png | xclip -selection clipboard -t image/png
elif [[ $1 = "part" ]]; then
maim -s -u | tee $HOME/Pictures/Screenshots/$(date +%F-%H%M%S)_maim.png | xclip -selection clipboard -t image/png
fi
notify-send "Screenshot Taken" "Saved to \~/Pictures/Screenshots"
|