#!/bin/sh part() { geometry="$(slurp)" sleep "0.5" grim -g "${geometry}" -t jpeg - | wl-copy } full() { grim -t jpeg - | wl-copy } rec() { killall -SIGINT gpu-screen-recorder homeuser='/home/awy' availableDisplay=$(hyprctl monitors | grep Monitor | cut -d' ' -f2) filename=$(date +"%Y-%m-%d %H:%M:%S") choice="$(printf "$availableDisplay\nExit\n" | rofi -dmenu -l "5")" [ "${choice}" != "Exit" ] || [ -z "${choice}" ] && gpu-screen-recorder -w $choice -f 60 -a default_output -a default_input -o "$homeuser/$filename.mp4" } case $1 in 1) part ;; 2) full ;; 3) rec ;; esac