From 91d5509acf56b3675de2297256e2b6ea884cf4bf Mon Sep 17 00:00:00 2001 From: Justine Smithies Date: Sat, 28 Oct 2023 17:19:38 +0100 Subject: Moved screenshot.sh into a scripts folder under River --- .config/river/init | 6 +++--- .config/river/scripts/screenshot.sh | 18 ++++++++++++++++++ 2 files changed, 21 insertions(+), 3 deletions(-) create mode 100755 .config/river/scripts/screenshot.sh (limited to '.config/river') diff --git a/.config/river/init b/.config/river/init index 98b9a38..0d46991 100755 --- a/.config/river/init +++ b/.config/river/init @@ -140,13 +140,13 @@ riverctl map normal Super F11 enter-mode passthrough riverctl map passthrough Super F11 enter-mode normal # Take a screenshot of the active output -riverctl map normal None Print spawn '~/.local/bin/screenshot.sh' +riverctl map normal None Print spawn '~/.config/river/scripts/screenshot.sh' # Take a screenshot of the selected region -riverctl map normal Super Print spawn '~/.local/bin/screenshot.sh selected-region' +riverctl map normal Super Print spawn '~/.config/river/scripts/screenshot.sh selected-region' # Take a screenshot and save it to the clipboard -riverctl map normal Super+Shift Print spawn '~/.local/bin/screenshot.sh save-to-clipboard' +riverctl map normal Super+Shift Print spawn '~/.config/river/scripts/screenshot.sh save-to-clipboard' # The scratchpad will live on an unused tag. Which tags are used depends on your # config, but rivers default uses the first 9 tags. diff --git a/.config/river/scripts/screenshot.sh b/.config/river/scripts/screenshot.sh new file mode 100755 index 0000000..088c1b1 --- /dev/null +++ b/.config/river/scripts/screenshot.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +case $1 in + selected-region) + # Take a screenshot of the selected region + grim -t jpeg -g "$(slurp)" ~/Pictures/Screenshots/$(date +%Y-%m-%d_%H-%m-%s).jpg + ;; + save-to-clipboard) + # Take a screenshot and save it to the clipboard + grim -g "$(slurp -d)" - | wl-copy + ;; + *) + # Take a screenshot of the currently focused output and save it into screenshots + output="$(lswt -j | jq -c '.[] | select(.activated) | .outputs' | awk -F'["" +]' '{print $2}')" + grim -o $output -t jpeg ~/Pictures/Screenshots/$(date +%Y-%m-%d_%H-%m-%s).jpg + ;; +esac -- cgit v1.2.3