diff options
Diffstat (limited to '.config/eww')
-rwxr-xr-x | .config/eww/scripts/start.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/.config/eww/scripts/start.sh b/.config/eww/scripts/start.sh index 5d46693..1ba0aa2 100755 --- a/.config/eww/scripts/start.sh +++ b/.config/eww/scripts/start.sh @@ -1,8 +1,7 @@ #!/bin/bash focusactivetag() { - export arg="$1" - echo "Arg: "$arg + export arg="$1" # Focus the lowest active tag num=$(river-bedload -print outputs | jq -r '.['$arg'] | select(.).view_tags') b=0 @@ -17,7 +16,6 @@ focusactivetag() { let b=b+1 if [[ $temp -eq 1 ]] then - echo $b riverctl set-focused-tags $((1 << ($b - 1))) return fi |