blob: ec305b9b60855c13c488a5b4e4951b3b90340aaf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#!/usr/bin/env bash
focusactivetag() {
export arg="$1"
# Focus the lowest active tag
num=$(river-bedload -print outputs | jq -r '.['$arg'] | select(.).focused_tags')
b=0
while [[ $num -gt 0 ]]
do
let temp=$num%2
if [[ $temp -eq 1 ]]
then
let count=$count+1
fi
let num=$num/2
let b=b+1
if [[ $temp -eq 1 ]]
then
riverctl set-focused-tags $((1 << ($b - 1)))
return
fi
done
return
}
# kill any running instances if they exist
eww kill
# Start Eww daemon
# eww daemon
# start a bar for each monitor
monitors=$(wlr-randr | grep "^[^ ]" | awk '{ print$1 }' | wc -l | xargs)
total=$(wlr-randr | grep "^[^ ]" | awk '{ print$1 }' | wc -l | xargs)
monitors=$(($monitors-1))
# for ((i = 0 ; i < $monitors ; i++)); do
for ((i = $monitors ; i >= 0 ; i-=1)); do
eww open bar${i}
riverctl focus-output $(wlr-randr | grep "^[^ ]" | awk '{ print$1 }' | awk 'FNR == '$i+1' {print}')
focusactivetag $i
done
|