From 4e530fb055a14fbea2e0107fcc542dd802a22771 Mon Sep 17 00:00:00 2001 From: Justine Smithies Date: Sat, 10 Feb 2024 13:34:09 +0000 Subject: Updated screenshot binds and added screenshot focused window --- .local/bin/screenshot.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to '.local/bin/screenshot.sh') diff --git a/.local/bin/screenshot.sh b/.local/bin/screenshot.sh index 29c62c8..6945464 100755 --- a/.local/bin/screenshot.sh +++ b/.local/bin/screenshot.sh @@ -11,10 +11,12 @@ case $1 in ;; focused-window) # Take a screenshot of the focused window - pos=$(qtile cmd-obj -o window -f get_position | awk '{ print $1" "$2}' | tr -dc '0-9 ') + pos=$(hyprctl -j activewindow | grep 'at' | tr -dc '0-9 ') xpos=$(echo $pos | awk '{ print $1 }') + xpos=$((xpos-2)) ypos=$(echo $pos | awk '{ print $2 }') - size=$(qtile cmd-obj -o window -f get_size | awk '{ print $1" "$2}' | tr -dc '0-9 ') + ypos=$((ypos-2)) + size=$(hyprctl -j activewindow | grep 'size' | tr -dc '0-9 ') xsize=$(echo $size | awk '{ print $1 }') ysize=$(echo $size | awk '{ print $2 }') xsize=$((xsize+4)) # Value added is 2 times the border width @@ -23,7 +25,7 @@ case $1 in ;; *) # Take a screenshot of the currently focused output and save it into screenshots - output="$(qtile cmd-obj -o core -f eval -a "self._current_output.wlr_output.name" | awk -F"['']" '/,/{print $2}')" + output="$(hyprctl monitors | grep -B 12 'focused: yes' | grep 'Monitor' | awk '{ print $2 }')" grim -o $output -t jpeg ~/Pictures/Screenshots/$(date +%Y-%m-%d_%H-%m-%s).jpg ;; esac -- cgit v1.2.3