diff options
author | Justine Smithies <justine@smithies.me.uk> | 2024-02-06 20:44:09 +0000 |
---|---|---|
committer | Justine Smithies <justine@smithies.me.uk> | 2024-02-06 20:44:09 +0000 |
commit | e2add462c0d66120867cdb7181a0d9c413f3e4c1 (patch) | |
tree | 4b313161d3300eeb5196d0b49d716cbec2bdc57f /.config/eww/scripts/start.sh | |
parent | 7620f87b79f7e8a4cfb6f672094a138518420d7a (diff) |
Initial commit of Eww config
Diffstat (limited to '.config/eww/scripts/start.sh')
-rwxr-xr-x | .config/eww/scripts/start.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.config/eww/scripts/start.sh b/.config/eww/scripts/start.sh new file mode 100755 index 0000000..f464058 --- /dev/null +++ b/.config/eww/scripts/start.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +# kill any running instances if they exist +eww kill + +# start a bar for each monitor +monitors=$(hyprctl monitors -j | jq '.[] | .id') +# monitors=$(hyprctl monitors -j | jq '.[] | .id' | wc -l) + +for monitor in ${monitors}; do + eww open bar${monitor} +done + +# eww open bar0 +# if [ $monitors -gt 1 ]; then +# for ((i = 1 ; i <= $monitors ; i++)); do +# eww open bar${i} +# done +# fi |