#!/usr/bin/env bash ## Copyright (C) 2020-2022 Aditya Shakya # Import Current Theme DIR="$HOME/.config/themes" STYLE="easy" RASI="$DIR/$STYLE/rofi/screenshot.rasi" # Theme Elements prompt='Screenshot' mesg="Directory :: Pictures/Screenshots" # Options layout=`cat ${RASI} | grep 'USE_ICON' | cut -d'=' -f2` 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="" option_5="" fi # Rofi CMD rofi_cmd() { rofi -dmenu \ -p "$prompt" \ -mesg "$mesg" \ -markup-rows \ -theme ${RASI} } # 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 echo -e "$option_1\n$option_2\n$option_4\n$option_5" | rofi_cmd } # Screenshot time=`date +%Y-%m-%d-%H-%M-%S` dir="Pictures/Screenshots" file="Screenshot_${time}.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/icons/dunst/picture.png' ${notify_cmd_shot} "Copied to clipboard." 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 () { wl-copy } # countdown countdown () { for sec in `seq $1 -1 1`; do dunstify -t 1000 -h string:x-dunst-stack-tag:screenshottimer -i /usr/share/icons/dunst/timer.png "Taking shot in : $sec" sleep 1 done } # take shots shotnow () { sleep 0.5 && grim "$dir/$file" copy_shot < "$dir/$file" notify_view } shot5 () { countdown '5' sleep 0.5 && grim "$dir/$file" copy_shot < "$dir/$file" notify_view } shot10 () { countdown '10' sleep 0.5 grim "$dir/$file" copy_shot < "$dir/$file" notify_view } shotwin () { grim -g "$(swaymsg -t get_tree | jq -j '.. | select(.type?) | select(.focused).rect | "\(.x),\(.y) \(.width)x\(.height)"')" "$dir/$file" copy_shot < "$dir/$file" notify_view } shotarea () { grim -t png -g "$(slurp)" "$dir/$file" copy_shot < "$dir/$file" 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 $option_1) run_cmd --opt1 ;; $option_2) run_cmd --opt2 ;; $option_3) run_cmd --opt3 ;; $option_4) run_cmd --opt4 ;; $option_5) run_cmd --opt5 ;; esac