From f4c4550e327d9090c82a735d39d104d0bedb602d Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Sun, 30 Mar 2025 01:00:51 -0400 Subject: Loads of laptop shit --- .local/bin/capture | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100755 .local/bin/capture (limited to '.local/bin/capture') diff --git a/.local/bin/capture b/.local/bin/capture new file mode 100755 index 0000000..49799f6 --- /dev/null +++ b/.local/bin/capture @@ -0,0 +1,42 @@ +#!/bin/sh + +capturedir="${XDG_PICTURES_DIR:-$HOME/Pictures}/captures" + +infomsg="Usage: capture [OPTION] + -h,--help: Print this help message + -s,--selection: Capture a portion of the screen + -f,--fullscreen: Grab the entire screen +" + +capturetype="" +capturename="/dev/null" +msg="Capture location: " + +icon="󰄀" + +case "$1" in + -w|--window) + capturetype="Window" + msg="Not implemented yet" + ;; + + -s|--selection) + capturetype="Region" + sel="$(slurp -w0 -b"447a6c69")" + capturename="$capturedir/capture-$(date "+%Y-%M-%d_%H-%m-%S").png" + grim -t png -g "$sel" $capturename + msg="$msg$capturename" + ;; + + -f|--fulscreen) + capturetype="Fulscreen" + capturename="$capturedir/capture-$(date "+%Y-%M-%d_%H-%m-%S").png" + msg="$msg$capturename" + grim -t png "$capturename" + ;; + + *) echo "Invalid argument provided" && printf "$infomsg" && exit 1 ;; +esac + +wl-copy --type image/png < $capturename +notify-send "$msg" -a "$icon $capturetype Capture" -i "$capturename" -- cgit v1.2.3