BurntSushi / wingo

A fully-featured window manager written in Go.
Do What The F*ck You Want To Public License
1k stars 89 forks source link

Remove decoration when using Maximized layout #127

Open sgelb opened 8 years ago

sgelb commented 8 years ago

For me, there is no need for any window decoration when using the Maximized layout. To identify the responsible code for doing this, I changed c.FrameBorders() to c.FrameNada() in xclient/layout.go:72, but nothing changed. Any hints?

BurntSushi commented 8 years ago

FrameTile is probably used during tiling, not during a maximized layout. You probably want to look for where FrameSlim is used.

sgelb commented 8 years ago

Well, this is embarrasing. Actually, I was on the right track. My mistake? I installed wingo with go get github.com/BurntSushi/wingo/.... I also cloned the repo into my personal src directory in $GOPATH. This is where I edited the code. Well, of course I did not change the import packages, so when i build the binary, most of them where included from your original code and of course nothing changed. Lesson learned.