1
0
Fork 0
forked from emily/nixfiles
nixfiles-emily/modules/graphical/files/scripts/rofi_screenshot.sh

137 lines
2.8 KiB
Bash
Raw Normal View History

2024-02-05 22:22:40 +01:00
#!/usr/bin/env bash
# Import Current Theme
DIR="$HOME/.config/rofi"
RASI="$DIR/screenshot.rasi"
# Theme Elements
prompt='Screenshot'
2024-05-29 21:10:12 +02:00
mesg="Directory :: $(xdg-user-dir PICTURES)/screenshots"
2024-02-05 22:22:40 +01:00
# Options
2024-05-29 21:10:12 +02:00
layout=$(< "${RASI}" grep 'USE_ICON' | cut -d'=' -f2)
2024-02-05 22:22:40 +01:00
if [[ "$layout" == 'NO' ]]; then
option_1=" Capture Desktop"
option_2=" Capture Area"
option_3=" Capture Window"
option_4=" Capture in 5s"
option_5=" Capture in 10s"
else
option_1=""
option_2=""
option_3=""
option_4="5s"
option_5="10"
fi
# Rofi CMD
rofi_cmd() {
rofi -dmenu \
-p "$prompt" \
-mesg "$mesg" \
-markup-rows \
2024-05-29 21:10:12 +02:00
-theme "${RASI}"
2024-02-05 22:22:40 +01:00
}
# Pass variables to rofi dmenu
run_rofi() {
echo -e "$option_1\n$option_2\n$option_3\n$option_4\n$option_5" | rofi_cmd
}
# Screenshot
2024-05-29 21:10:12 +02:00
time=$(date +%Y-%m-%d-%H-%M-%S)
dir="$(xdg-user-dir PICTURES)/screenshots"
file="${time}.png"
2024-02-05 22:22:40 +01:00
# Directory
if [[ ! -d "$dir" ]]; then
mkdir -p "$dir"
fi
# notify and view screenshot
2024-05-29 21:10:12 +02:00
iDIR="$HOME/.config/hypr/mako-icons"
2024-02-05 22:22:40 +01:00
notify_view() {
notify_cmd_shot="notify-send -h string:x-canonical-private-synchronous:sys-notify-shot -u low -i ${iDIR}/picture.png"
${notify_cmd_shot} "Copied to clipboard."
paplay /usr/share/sounds/freedesktop/stereo/screen-capture.oga &>/dev/null &
2024-05-11 17:50:26 +02:00
imv "$dir/$file"
2024-02-05 22:22:40 +01:00
if [[ -e "$dir/$file" ]]; then
${notify_cmd_shot} "Screenshot Saved."
else
${notify_cmd_shot} "Screenshot Deleted."
fi
}
# countdown
countdown () {
2024-05-29 21:10:12 +02:00
for sec in $(seq "$1" -1 1); do
2024-02-05 22:22:40 +01:00
notify-send -h string:x-canonical-private-synchronous:sys-notify-count -t 1000 -i "$iDIR"/timer.png "Taking shot in : $sec"
sleep 1
done
}
# take shots
shotnow () {
2024-05-29 21:10:12 +02:00
cd "${dir}" && sleep 0.5 && grim - | tee "$file" | wl-copy
2024-02-05 22:22:40 +01:00
notify_view
}
shot5 () {
countdown '5'
2024-05-29 21:10:12 +02:00
sleep 1 && cd "${dir}" && grim - | tee "$file" | wl-copy
2024-02-05 22:22:40 +01:00
notify_view
}
shot10 () {
countdown '10'
2024-05-29 21:10:12 +02:00
sleep 1 && cd "${dir}" && grim - | tee "$file" | wl-copy
2024-02-05 22:22:40 +01:00
notify_view
}
shotwin () {
2024-05-29 21:10:12 +02:00
w_pos=$(hyprctl activewindow | grep 'at:' | cut -d':' -f2 | tr -d ' ' | tail -n1)
w_size=$(hyprctl activewindow | grep 'size:' | cut -d':' -f2 | tr -d ' ' | tail -n1 | sed s/,/x/g)
cd "${dir}" && sleep 0.3 && grim -g "$w_pos $w_size" - | tee "$file" | wl-copy
2024-02-05 22:22:40 +01:00
notify_view
}
shotarea () {
2024-05-29 21:10:12 +02:00
cd "${dir}" && grim -g "$(slurp -b 20262CCC -c B4A1DBff -s B4A1DB0D -w 2 && sleep 0.3)" - | tee "$file" | wl-copy
2024-02-05 22:22:40 +01:00
notify_view
}
# Execute Command
run_cmd() {
if [[ "$1" == '--opt1' ]]; then
shotnow
elif [[ "$1" == '--opt2' ]]; then
shotarea
elif [[ "$1" == '--opt3' ]]; then
shotwin
elif [[ "$1" == '--opt4' ]]; then
shot5
elif [[ "$1" == '--opt5' ]]; then
shot10
fi
}
# Actions
chosen="$(run_rofi)"
case ${chosen} in
2024-05-29 21:10:12 +02:00
"$option_1")
2024-02-05 22:22:40 +01:00
run_cmd --opt1
;;
2024-05-29 21:10:12 +02:00
"$option_2")
2024-02-05 22:22:40 +01:00
run_cmd --opt2
;;
2024-05-29 21:10:12 +02:00
"$option_3")
2024-02-05 22:22:40 +01:00
run_cmd --opt3
;;
2024-05-29 21:10:12 +02:00
"$option_4")
2024-02-05 22:22:40 +01:00
run_cmd --opt4
;;
2024-05-29 21:10:12 +02:00
"$option_5")
2024-02-05 22:22:40 +01:00
run_cmd --opt5
;;
esac