Moves to maim rather than scrot for screenshots
This commit is contained in:
parent
2557962269
commit
93e4d3d087
1 changed files with 9 additions and 4 deletions
|
@ -1,10 +1,11 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# A simple wrapper around scrot
|
# A simple wrapper around maim
|
||||||
#
|
#
|
||||||
# When run, the screenshot will be added to she clipboard
|
# When run, the screenshot will be added to she clipboard
|
||||||
|
|
||||||
path='/tmp'
|
path='/tmp'
|
||||||
|
command -v maim > /dev/null && screenshooter="maim" || screenshooter="scrot"
|
||||||
|
|
||||||
#If a project is set we will put screenshots in the project's folder
|
#If a project is set we will put screenshots in the project's folder
|
||||||
project=$(project current --path)
|
project=$(project current --path)
|
||||||
|
@ -14,15 +15,19 @@ if [ -n "$project" ]; then
|
||||||
mkdir "$path" 2> /dev/null
|
mkdir "$path" 2> /dev/null
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
filename="$(date +"%Y-%m-%dT%H-%M-%SZ").png"
|
||||||
|
file="${path}/${filename}"
|
||||||
|
|
||||||
case $1 in
|
case $1 in
|
||||||
"window")
|
"window")
|
||||||
file=$(scrot -u "$path/%F_%T_\$wx\$h.png" -e "echo -n $path/%F_%T_\$wx\$h.png")
|
maim -i $(xdotool getactivewindow) "$file"
|
||||||
;;
|
;;
|
||||||
"select")
|
"select")
|
||||||
file=$(sleep 0.2; scrot -s "$path/%F_%T_\$wx\$h.png" -e "echo -n $path/%F_%T_\$wx\$h.png")
|
#maim -s -r crosshair "$file"
|
||||||
|
maim -s -c 0.41,0.62,0.42,0.2 -l -u "$file"
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
file=$(scrot "$path/%F_%T_\$wx\$h.png" -e "echo -n $path/%F_%T_\$wx\$h.png")
|
maim "$file"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue