blob: 456503222161dd394b1b773a62692ab3e59a426c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
# Takes a screenshot
borderColor="0.412,0.431,1"
name="$(date +"%y%m%d_%H%M%S")".png
file="$HOME/images/screenshots/""$name"
[ "$1" = "" ] && maim -m 8 "$file" && notify-send -t 800 "Screenshot $name taken."
[ "$1" = "-a" ] && maim -s -b 2 -c "$borderColor" -m 8 "$file" && notify-send -t 800 "Screenshot $name taken."
[ "$1" = "-c" ] && maim -s -b 2 -c "$borderColor" -m 8 | xclip -selection clipboard -t image/png && notify-send -t 800 "Screenshot copied to clipboard."
|