101 lines
2.3 KiB
Bash
Executable File
101 lines
2.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
|
##
|
|
## Openbox Pipemenu to take screenshots with maim
|
|
|
|
# Variables and functions
|
|
MENUS_LIBDIR='/usr/share/archcraft/openbox/menulib'
|
|
if ! . "$MENUS_LIBDIR/archcraft.cfg" 2> /dev/null; then
|
|
echo "Error: Failed to locate archcraft.cfg in $MENUS_LIBDIR" >&2
|
|
exit 1
|
|
fi
|
|
|
|
# file
|
|
time=`date +%Y-%m-%d-%H-%M-%S`
|
|
geometry=`xrandr | grep 'current' | head -n1 | cut -d',' -f2 | tr -d '[:blank:],current'`
|
|
dir="`xdg-user-dir PICTURES`/Screenshots"
|
|
file="Screenshot_${time}_${geometry}.png"
|
|
|
|
# directory
|
|
if [[ ! -d "$dir" ]]; then
|
|
mkdir -p "$dir"
|
|
fi
|
|
|
|
# notify and view screenshot
|
|
notify_view () {
|
|
notify_cmd_shot='dunstify -u low -h string:x-dunst-stack-tag:obscreenshot -i /usr/share/archcraft/icons/dunst/picture.png'
|
|
${notify_cmd_shot} "Copied to clipboard."
|
|
paplay /usr/share/sounds/freedesktop/stereo/screen-capture.oga &>/dev/null &
|
|
viewnior ${dir}/"$file"
|
|
if [[ -e "$dir/$file" ]]; then
|
|
${notify_cmd_shot} "Screenshot Saved."
|
|
else
|
|
${notify_cmd_shot} "Screenshot Deleted."
|
|
fi
|
|
}
|
|
|
|
# copy screenshot to clipboard
|
|
copy_shot () {
|
|
tee "$file" | xclip -selection clipboard -t image/png
|
|
}
|
|
|
|
# countdown
|
|
countdown () {
|
|
for sec in `seq $1 -1 1`; do
|
|
dunstify -t 1000 -h string:x-dunst-stack-tag:screenshottimer -i /usr/share/archcraft/icons/dunst/timer.png "Taking shot in : $sec"
|
|
sleep 1
|
|
done
|
|
}
|
|
|
|
# take shots
|
|
shotnow () {
|
|
cd ${dir} && sleep 0.5 && maim -u -f png | copy_shot
|
|
notify_view
|
|
}
|
|
|
|
shot5 () {
|
|
countdown '5'
|
|
sleep 1 && cd ${dir} && maim -u -f png | copy_shot
|
|
notify_view
|
|
}
|
|
|
|
shot10 () {
|
|
countdown '10'
|
|
sleep 1 && cd ${dir} && maim -u -f png | copy_shot
|
|
notify_view
|
|
}
|
|
|
|
shotwin () {
|
|
cd ${dir} && maim -u -f png -i `xdotool getactivewindow` | copy_shot
|
|
notify_view
|
|
}
|
|
|
|
shotarea () {
|
|
cd ${dir} && maim -u -f png -s -b 2 -c 0.35,0.55,0.85,0.25 -l | copy_shot
|
|
notify_view
|
|
}
|
|
|
|
# execute
|
|
if [[ "$1" == "--now" ]]; then
|
|
shotnow
|
|
elif [[ "$1" == "--in5" ]]; then
|
|
shot5
|
|
elif [[ "$1" == "--in10" ]]; then
|
|
shot10
|
|
elif [[ "$1" == "--win" ]]; then
|
|
shotwin
|
|
elif [[ "$1" == "--area" ]]; then
|
|
shotarea
|
|
else
|
|
menuStart
|
|
menuItem 'Screenshot Now' "$0 --now"
|
|
menuItem 'Screenshot In 5s' "$0 --in5"
|
|
menuItem 'Screenshot In 10s' "$0 --in10"
|
|
menuItem 'Screenshot Area' "$0 --area"
|
|
menuItem 'Screenshot Window' "$0 --win"
|
|
menuEnd
|
|
fi
|
|
|
|
exit 0
|