gh0stzk / dotfiles

BSPWM environment with 18 themes. With a theme selector to change on the fly.
GNU General Public License v3.0
2.69k stars 201 forks source link

Eww don'n fade out in Fullscreen videos #159

Closed aramacs closed 8 months ago

aramacs commented 8 months ago

Playing around with zombi3, it's showing this behavior when I do Super+f image

image

gh0stzk commented 8 months ago

Yes is an issue i need to fix and there are some fixes to deal with. The first one is this code in bspwmrc, is an example it will not work in my config ok, because i need to adapt it to the rices with eww bar (z0mbi3, andrea) and for the widgets calendar, etc,

bspc subscribe node_state | while read -r _ _ _ _ state flag; do
    if [ "$state" != "fullscreen" ]; then
        continue
    fi
    if [ "$flag" == on ]; then
        $HOME/.local/bin/eww -c $HOME/.config/eww/bar close-all
  else
        $HOME/.local/bin/eww -c $HOME/.config/eww/bar open bar
    fi
done &

another fix that will work now is with the Super + h keybind. that hide bars in all themes and you unhide with Super + u works with polybar and eww.

aramacs commented 8 months ago

Thanks for the replay. I'm using Super+h. One more question. Where can I decrease this margin left of the bar?

gh0stzk commented 8 months ago

In the eww.yuck file located at ~/.config/bspwm/rices/z0mbi3/bar/ almost at the end of file you will se a geometry :x "15px" change that 15px for whatever you want.

aramacs commented 8 months ago

Oh, I was in the right direction, but I was thinking about the other rices that U use offset. Thanks a lot.

gh0stzk commented 8 months ago

You can reduce the space of the bars in polybar from the confing.ini file inside each theme folder.

offset-y =

aramacs commented 8 months ago

yep. That was my misunderstanding. I was looking for the offset in zombi3. Really like vertical bar. It helps a lot with tiny laptops like mine.