New backup 2025-09-05 19:00:02

This commit is contained in:
Penelope Gwen 2025-09-05 19:00:02 -07:00
parent be9318b5f5
commit c042533755
2 changed files with 5 additions and 2 deletions

View file

@ -2,4 +2,4 @@
include $HOME/.config/sway/config.d/display.d/*
exec_always "killall multibg-wayland;multibg-wayland ~/.config/sway/assets/wallpaper/"
exec_always $HOME/.config/sway/scripts/open-eww-windows.sh
exec_always $HOME/.config/sway/scripts/open-eww-windows.sh $overview_display

View file

@ -7,4 +7,7 @@ done
while read o;do
eww open --screen "${o}" bar --id "${o}"
done < <(swaymsg -t get_outputs | jq -r '.[].name')
eww open --screen "$(swaymsg -t get_outputs | jq -r '.[0].name')" home;eww update homewidgets_reveal=true
if [[ ! -z ${1} ]];then
eww open --screen "${1}" home;eww update homewidgets_reveal=true
# eww open --screen "$(swaymsg -t get_outputs | jq -r '.[0].name')" home;eww update homewidgets_reveal=true
fi