baskerville / bspwm

A tiling window manager based on binary space partitioning
BSD 2-Clause "Simplified" License
7.72k stars 415 forks source link

visible polybar on fullscreen #857

Closed bazeeel closed 5 years ago

bazeeel commented 5 years ago

I see polybar on fullscreen youtube,vlc,mpv videos. How can i solved this ?

msteen commented 5 years ago

See #696 and #484. Personally I use lemonbar with the following in my external rules file:

#!/usr/bin/env bash

wid=$1
class=$2
instance=$3

if [[ "$instance" == lemonbar ]]; then
  echo manage=off
  xdo above -t "$(xdo id -N Bspwm -n root | sort | head -n 1)" $wid
fi
phisch commented 5 years ago

check this section for wm-restack Configuration#bar-settings

bazeeel commented 5 years ago

I tested but not working 100% i reaload polybar with keybinding and its visible again :(

phisch commented 5 years ago

The wm-restack feature implemented in polybar works fine for me. On the other hand, this is not a bspwm issue, you should then open a ticket regarding misbehaving wm-restack in the polybar repository. <- although i think it works as expected

bazeeel commented 5 years ago

Ok.Thank you