diff options
Diffstat (limited to '.local')
| -rwxr-xr-x | .local/bin/screenrecord.sh | 2 | ||||
| -rwxr-xr-x | .local/bin/screenshot.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.local/bin/screenrecord.sh b/.local/bin/screenrecord.sh index c60d46c..42af5d1 100755 --- a/.local/bin/screenrecord.sh +++ b/.local/bin/screenrecord.sh @@ -1,7 +1,7 @@ #!/bin/sh # Get focused output -output="$( moocow show windows | jq -r '.data[] | select(.focused == true) | .output')" +output="$(moocow show windows | jq -r '.data[] | select(.focused == true) | .output')" case $1 in selected-region) diff --git a/.local/bin/screenshot.sh b/.local/bin/screenshot.sh index 439929e..eb8807c 100755 --- a/.local/bin/screenshot.sh +++ b/.local/bin/screenshot.sh @@ -1,7 +1,7 @@ #!/bin/sh # Get focused output -output="$( moocow show windows | jq -r '.data[] | select(.focused == true) | .output')" +output="$(moocow show windows | jq -r '.data[] | select(.focused == true) | .output')" case $1 in selected-region) |
