aboutsummaryrefslogtreecommitdiff
path: root/.config/river/scripts
diff options
context:
space:
mode:
authorJustine Smithies <justine@smithies.me.uk>2024-12-17 18:41:20 +0000
committerJustine Smithies <justine@smithies.me.uk>2024-12-17 18:41:20 +0000
commit45f172a15e92087cdbf9bfe3f9c496bfa17ffe3e (patch)
tree2686c0e470a31bd1ca458e46454ec40db2b3ca59 /.config/river/scripts
parent1e267c52240e177f635f8f718099571e24493088 (diff)
Converted from bash to sh.
Diffstat (limited to '.config/river/scripts')
-rwxr-xr-x.config/river/scripts/screenshot.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/.config/river/scripts/screenshot.sh b/.config/river/scripts/screenshot.sh
index c6ae433..a8f8c09 100755
--- a/.config/river/scripts/screenshot.sh
+++ b/.config/river/scripts/screenshot.sh
@@ -1,9 +1,9 @@
-#!/usr/bin/env bash
+#!/bin/sh
case $1 in
selected-region)
# Take a screenshot of the selected region
- grim -t png -g "$(slurp)" ~/Pictures/Screenshots/$(date +%Y-%m-%d_%H-%m-%s).png
+ grim -t png -g "$(slurp)" ~/Pictures/Screenshots/"$(date +%Y-%m-%d_%H-%m-%s)".png
;;
save-to-clipboard)
# Take a screenshot and save it to the clipboard
@@ -12,6 +12,6 @@ case $1 in
*)
# Take a screenshot of the currently focused output and save it into screenshots
output="$(river-bedload -print outputs | jq -c '.[] | select(.focused) | .name' | awk -F'[""]' '{print $2}')"
- grim -o $output -t png ~/Pictures/Screenshots/$(date +%Y-%m-%d_%H-%m-%s).png
+ grim -o "$output" -t png ~/Pictures/Screenshots/"$(date +%Y-%m-%d_%H-%m-%s)".png
;;
esac