2015-05-11 23:41:56 +02:00
|
|
|
|
#!/bin/sh
|
|
|
|
|
|
2020-12-01 16:27:21 +01:00
|
|
|
|
## Try to use flameshot to get a screenshot
|
|
|
|
|
### See https://github.com/flameshot-org/flameshot
|
|
|
|
|
## Or try to use scrot
|
2017-04-12 14:58:53 +02:00
|
|
|
|
|
2020-12-01 16:27:21 +01:00
|
|
|
|
if [ "$(command -v flameshot)" ]; then
|
|
|
|
|
flameshot gui --path /tmp
|
|
|
|
|
|
|
|
|
|
else ## Use scrot
|
|
|
|
|
# -s : Interactively select a window or rectangle with the mouse.
|
|
|
|
|
# -e : Directly open the screenshot with Gimp then delete it
|
|
|
|
|
|
|
|
|
|
scrot -s -m -e 'gimp $f ; mv $f /tmp/'
|
|
|
|
|
|
|
|
|
|
fi
|