sh: Fix quoting
This commit is contained in:
parent
6e5ad35862
commit
c8eb9fdb4c
3 changed files with 4 additions and 4 deletions
|
|
@ -160,8 +160,8 @@ riverctl map normal $mod+Shift Comma send-to-output previous
|
|||
|
||||
# set up 10 tags (with '0' opening the 10th one)
|
||||
for i in $(seq 0 9); do
|
||||
tags=$((1 << (i - 1)))
|
||||
if [ "$i" -eq 0 ]; then tags=$((1 << 9)); fi
|
||||
tags="$((1 << (i - 1)))"
|
||||
if [ "$i" -eq 0 ]; then tags="$((1 << 9))"; fi
|
||||
|
||||
# Mod+[1-9] to focus tag [0-8]
|
||||
riverctl map normal $mod "$i" set-focused-tags $tags
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue