6 lines
151 B
Bash
Executable file
6 lines
151 B
Bash
Executable file
#!/bin/bash
|
|
|
|
while read o;do
|
|
#echo "eww screen: ${o}"
|
|
eww open --screen "${o}" bar --id "${o}"
|
|
done < <(swaymsg -t get_outputs | jq -r '.[].name')
|