aesophor / wmderland

🌳 X11 tiling window manager using space partitioning trees
https://www.reddit.com/r/unixporn/comments/fb8ve1/wmderland_104_time_to_move_on/
MIT License
408 stars 15 forks source link

Gap at the top between polybar and the windows #64

Open arcolinuxz opened 2 years ago

arcolinuxz commented 2 years ago

Today a gap appeared between polybar and our windows. Did something change in that regard? Did I change something? I checked polybar config and wmderland config. I do not seem to find a variable to set it except the gaps. Config is here

https://github.com/arcolinux/arcolinux-wmderland

Arch linux version is 1.0.4-2

ArcoLinux-2021-12-17-1639727446_screenshot_3840x1080

aesophor commented 2 years ago

Hmm.. Here's how my desktop currenlty looks like. I just updated all the packages and rebooted my PC, but everything looks fine.

scrot-2021-12-18_102807_1920x1080

Is polybar launched twice? I use this script to launch polybar which ensures only one polybar process exists.

#!/usr/bin/env sh
# ~/.config/polybar/launch.sh

# Terminate already running bar instances
killall -q polybar

# Wait until the processes have been shut down
while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done

# Launch bar1 and bar2
sleep 1 && polybar -c ~/.config/polybar/config -r default &

echo "Bars launched..."
arcolinuxz commented 2 years ago

Probably related to dual screen here is an image of virtualbox ArcoLinux-2021-12-18_12-15 It all looks nice now. ps: we have a similar script for polybar