archcraft-openbox/files/rofi/bin/screenshot

102 lines
2.2 KiB
Plaintext
Raw Normal View History

2021-09-22 17:54:49 +00:00
#!/usr/bin/env bash
## Copyright (C) 2020-2021 Aditya Shakya <adi1090x@gmail.com>
## Everyone is permitted to copy and distribute copies of this file under GNU-GPL3
STYLE="default"
rofi_command="rofi -theme $HOME/.config/openbox/rofi/$STYLE/screenshot.rasi"
time=`date +%Y-%m-%d-%I-%M-%S`
geometry=`xrandr | head -n1 | cut -d',' -f2 | tr -d '[:blank:],current'`
dir="`xdg-user-dir PICTURES`/Screenshots"
file="Screenshot_${time}_${geometry}.png"
# Buttons
layout=`cat $HOME/.config/openbox/rofi/$STYLE/screenshot.rasi | grep BUTTON | cut -d'=' -f2 | tr -d '[:blank:],*/'`
if [[ "$layout" == "TRUE" ]]; then
screen=""
area=""
window=""
infive=""
inten=""
else
screen=" Capture Desktop"
area=" Capture Area"
window=" Capture Window"
infive=" Take in 5s"
inten=" Take in 10s"
fi
# notify
notify_user () {
if [[ -e "$dir/$file" ]]; then
dunstify -u low --replace=699 -i /usr/share/archcraft/icons/dunst/picture.png "Saved in $dir"
else
dunstify -u low --replace=699 -i /usr/share/archcraft/icons/dunst/picture.png "Screenshot Deleted."
fi
}
# countdown
countdown () {
for sec in `seq $1 -1 1`; do
dunstify -t 1000 --replace=699 -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 "$file" && viewnior ${dir}/"$file"
notify_user
}
shot5 () {
countdown '5'
sleep 1 && cd ${dir} && maim -u -f png "$file" && viewnior ${dir}/"$file"
notify_user
}
shot10 () {
countdown '10'
sleep 1 && cd ${dir} && maim -u -f png "$file" && viewnior ${dir}/"$file"
notify_user
}
shotwin () {
cd ${dir} && maim -u -f png -i `xdotool getactivewindow` "$file" && viewnior ${dir}/"$file"
notify_user
}
shotarea () {
cd ${dir} && maim -u -f png -s -b 2 -c 0.35,0.55,0.85,0.25 -l "$file" && viewnior ${dir}/"$file"
notify_user
}
if [[ ! -d "$dir" ]]; then
mkdir -p "$dir"
fi
# Variable passed to rofi
options="$screen\n$area\n$window\n$infive\n$inten"
chosen="$(echo -e "$options" | $rofi_command -p 'Take A Shot' -dmenu -selected-row 0)"
case $chosen in
$screen)
shotnow
;;
$area)
shotarea
;;
$window)
shotwin
;;
$infive)
shot5
;;
$inten)
shot10
;;
esac