mirror of
https://github.com/Matir/skel.git
synced 2026-05-26 13:35:42 -07:00
63 lines
1.1 KiB
Bash
Executable File
63 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Screenshot tool to try a few different tools
|
|
|
|
set -ue
|
|
|
|
TOOLS="flameshot scrot"
|
|
SCREENDIR=${SCREENDIR:-${HOME}/Pictures/Screenshots}
|
|
SCROT_FORMAT="%F-%T.png"
|
|
|
|
function default_screenshot_command {
|
|
for tool in ${TOOLS} ; do
|
|
if which "${tool}" >/dev/null 2>&1 ; then
|
|
echo "${tool}"
|
|
return 0
|
|
fi
|
|
done
|
|
exit 1
|
|
}
|
|
|
|
TOOL=${SHOT:-$(default_screenshot_command)}
|
|
CMD=${1:-region}
|
|
|
|
function flameshot_gui_capture {
|
|
flameshot gui -p "${SCREENDIR}"
|
|
}
|
|
|
|
function flameshot_region_capture {
|
|
flameshot_gui_capture
|
|
}
|
|
|
|
function flameshot_window_capture {
|
|
flameshot_gui_capture
|
|
}
|
|
|
|
function flameshot_full_capture {
|
|
flameshot full -p "${SCREENDIR}"
|
|
}
|
|
|
|
function scrot_region_capture {
|
|
scrot -s "${SCREENDIR}/${SCROT_FORMAT}"
|
|
}
|
|
|
|
function scrot_window_capture {
|
|
scrot -u "${SCREENDIR}/${SCROT_FORMAT}"
|
|
}
|
|
|
|
function scrot_full_capture {
|
|
scrot "${SCREENDIR}/${SCROT_FORMAT}"
|
|
}
|
|
|
|
case "${CMD}" in
|
|
region|window|full)
|
|
mkdir -p "${SCREENDIR}"
|
|
${TOOL}_${CMD}_capture
|
|
exit $?
|
|
;;
|
|
*)
|
|
echo "Usage: $0 [region|window|full]" >/dev/stderr
|
|
exit 1
|
|
;;
|
|
esac
|