diff options
author | Justine Smithies <justine@smithies.me.uk> | 2023-10-28 17:19:38 +0100 |
---|---|---|
committer | Justine Smithies <justine@smithies.me.uk> | 2023-10-28 17:19:38 +0100 |
commit | 91d5509acf56b3675de2297256e2b6ea884cf4bf (patch) | |
tree | 306ba09692aef57d2c723534c5dadabb455a28bd /.config/river | |
parent | f35da1c024ceae6ecd3a48497a664848cf8cdaff (diff) |
Moved screenshot.sh into a scripts folder under River
Diffstat (limited to '.config/river')
-rwxr-xr-x | .config/river/init | 6 | ||||
-rwxr-xr-x | .config/river/scripts/screenshot.sh | 18 |
2 files changed, 21 insertions, 3 deletions
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 |