diff options
| author | Justine Smithies <justine@smithies.me.uk> | 2026-08-19 20:24:44 +0100 |
|---|---|---|
| committer | Justine Smithies <justine@smithies.me.uk> | 2026-08-19 20:24:44 +0100 |
| commit | af215687c5284309fd71561e7657f9974b068281 (patch) | |
| tree | 0d5bec954195693b109515d185138ab4d794cec8 | |
| parent | 7f11e930d549f78ddc892639b4946f616a8e0945 (diff) | |
Removed leading space from output line.
| -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) |
