diff options
Diffstat (limited to '.local/bin/hyprshot')
-rwxr-xr-x | .local/bin/hyprshot | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/.local/bin/hyprshot b/.local/bin/hyprshot deleted file mode 100755 index 7036c84..0000000 --- a/.local/bin/hyprshot +++ /dev/null @@ -1,28 +0,0 @@ -#!/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 |