#!/usr/bin/env bash DIR="$HOME/Pictures/screenshots/" NAME="screenshot_$(date +%d%m%Y_%H%M%S).png" option2="Selected area" option3="Fullscreen (delay 3 sec)" options="$option2\n$option3" choice=$(echo -e "$options" | rofi -dmenu -replace -config ~/.dotfiles/home/configs/rofi/config-screenshot.rasi -i -no-show-icons -l 2 -width 30 -p "Take Screenshot") case $choice in $option2) grim -g "$(slurp)" - | swappy -f - notify-send "Screenshot created" "Mode: Selected area" ;; $option3) sleep 3 grim - | swappy -f - notify-send "Screenshot created" "Mode: Fullscreen" ;; esac