dotfiles/de/home/.config/sway/scripts/open-eww-windows.sh
2025-09-02 14:00:02 -07:00

9 lines
182 B
Bash
Executable file

#!/bin/bash
until eww ping 2>/dev/null;do
printf '.'
sleep 1
done
while read o;do
eww open --screen "${o}" bar --id "${o}"
done < <(swaymsg -t get_outputs | jq -r '.[].name')