You are not logged in.

#1 2012-09-23 10:28:16

bloom
Member
Registered: 2010-08-18
Posts: 749
Website

bspwm — A tiling window manager based on binary space partitioning

Homepage:
    https://github.com/baskerville/bspwm

Mailing list:
    bspwm at librelist.com

IRC:
    #bspwm on irc.freenode.net

Reddit:
    http://www.reddit.com/r/bspwm

Screencast:
    https://vimeo.com/49999396

Tutorials:
    https://github.com/smlb/dotfiles/wiki/Bspwm
    http://crunchbang.org/forums/viewtopic.php?id=33034&p=1
    https://github.com/windelicato/dotfiles … or-dummies

Donations:

Last edited by bloom (2015-01-19 10:30:09)


gh · da · ds

Offline

#2 2012-09-23 13:07:24

dimigon
Member
Registered: 2009-03-07
Posts: 139
Website

Re: bspwm — A tiling window manager based on binary space partitioning

I am an i3-wm user and I really like bspwm.  Good job, looking forward to this project.

Offline

#3 2012-09-23 13:40:34

FreeTheBee
Member
Registered: 2011-01-02
Posts: 125

Re: bspwm — A tiling window manager based on binary space partitioning

It looks interesting, I will definitely try it out.

Offline

#4 2012-09-23 13:52:38

Shinryuu
Member
From: /dev/urandom
Registered: 2010-02-27
Posts: 339

Re: bspwm — A tiling window manager based on binary space partitioning

Nice! I like when new tiling managers pops out from nowhere, video got my attention cool

Offline

#5 2012-09-23 16:34:08

Sirsurthur
Member
Registered: 2009-02-02
Posts: 124

Re: bspwm — A tiling window manager based on binary space partitioning

Hello !

I Wanted to test bspwm but I am doing something wrong while starting it. I took your bspwmrc, autorstart and xbindkeysrc files but I can not start it.

X says "Socket path environment variable is not defined". Where could I define it ?

Thanks a lot for your answer.

Last edited by Sirsurthur (2012-09-23 16:34:28)

Offline

#6 2012-09-23 16:53:38

bloom
Member
Registered: 2010-08-18
Posts: 749
Website

Re: bspwm — A tiling window manager based on binary space partitioning

Sirsurthur wrote:

X says "Socket path environment variable is not defined". Where could I define it ?

Add the following to your ~/.profile:

export BSPWM_SOCKET=/tmp/bspwm-socket

Beware: if you have a shell specific profile file (e.g. ~/.bash_profile for Bash) it will take precedence over ~/.profile.

Last edited by bloom (2012-09-23 17:28:26)


gh · da · ds

Offline

#7 2012-09-23 18:14:46

Sirsurthur
Member
Registered: 2009-02-02
Posts: 124

Re: bspwm — A tiling window manager based on binary space partitioning

Weird, even by adding the BSPWM_SOCKET command to my .bash_profile, it still does not recognize socket path environment variable ?

Offline

#8 2012-09-23 18:18:38

c00kiemon5ter
Member
From: Greece
Registered: 2010-06-01
Posts: 562
Website

Re: bspwm — A tiling window manager based on binary space partitioning

after adding you either need to re-login to your account or source the profile file for the new setting to take effect


.:[ git me! ] :.

Offline

#9 2012-09-23 18:30:40

Sirsurthur
Member
Registered: 2009-02-02
Posts: 124

Re: bspwm — A tiling window manager based on binary space partitioning

Indeed it worked smile ! Thanks a lot ! Bspwm looks very promising !

Offline

#10 2012-09-23 18:45:44

c00kiemon5ter
Member
From: Greece
Registered: 2010-06-01
Posts: 562
Website

Re: bspwm — A tiling window manager based on binary space partitioning

btw, I had a quick run with this wink  (not sure where autostart file should go tongue)

the focus behaviour is surely unintuitive (for me at least)
as well as the placement of a newly spawned window
especially on monocle layout you have no idea how to get to the "next" window

I understand how this is inherent to the binary-tree design.
I liked that idea when it first came up on the dwm ml iirc
but it seems to have a learning curve to get used to.

one can revert to manual tiling but I (my own opinion) cannot see the point of
having some software to automatically manage your windows, using it to
manually manage the windows tongue a bit of a paradox

I really like the idea of having a socket to communicate with the wm
and thus having the keybinder separate from the wm body
I dont like that you need a separate app to do that, but I guess it's needed

I remember you had asked for a configurable double borders around windows for monsterwm.
seems nice for what you wanted to achieve - make the border stand out no matter the window's
content's color or environment's color (ie wallpaper or underneath window content etc) - but did
not fit monster's ideas wink I think it's good and if I understand correctly it is configurable so one
can revert to the traditional look of normal borders.

I expected to get floating once trying to resize/move a window,
but one needs to toggle the window to floating before that can work.
That also felt a bit strange. Also, toggling to floating mode, I think it
would be nicer to center the window instead of placing it on 0,0

xinerama support seems to be missing for now, I guess it is planned in the future wink
It is really simple how it works and I can help out if you want to.

All in all, I'd say you did a good job, it's xcb and I like the concept.
To me, the behaviour feels strange for some things (as I explained)
but I guess this happens with all new software one tries.
Yay for the style - double borders, useless-gaps and the logo look nice.


.:[ git me! ] :.

Offline

#11 2012-09-23 20:49:23

bloom
Member
Registered: 2010-08-18
Posts: 749
Website

Re: bspwm — A tiling window manager based on binary space partitioning

c00kiemon5ter wrote:

btw, I had a quick run with this wink  (not sure where autostart file should go tongue)

In $XDG_CONFIG_HOME/bspwm/: if the README is unclear I'll fix it.
Thanks for giving it a try.

c00kiemon5ter wrote:

the focus behaviour is surely unintuitive (for me at least)

Well, I can garantee you that it is not random ;-,

c00kiemon5ter wrote:

as well as the placement of a newly spawned window

In automatic mode, the focus rectangle remain the same, in manual mode, the fat preselection border indicates where the new window will appear.

Maybe I should be more explicit in the README.

c00kiemon5ter wrote:

especially on monocle layout you have no idea how to get to the "next" window

Unfortunately it is, in fact I wasn't sure whether I should provide a monocle layout or not.

c00kiemon5ter wrote:

I understand how this is inherent to the binary-tree design.
I liked that idea when it first came up on the dwm ml iirc
but it seems to have a learning curve to get used to.

Indeed.

c00kiemon5ter wrote:

one can revert to manual tiling but I (my own opinion) cannot see the point of
having some software to automatically manage your windows, using it to
manually manage the windows tongue a bit of a paradox

It could also be seen as compromise: when the automatic mode is not enough, one will switch to manual mode.

c00kiemon5ter wrote:

I really like the idea of having a socket to communicate with the wm
and thus having the keybinder separate from the wm body
I dont like that you need a separate app to do that, but I guess it's needed

Yes, I prefer to leave the keyboard handling task to xbindkeys.

c00kiemon5ter wrote:

I remember you had asked for a configurable double borders around windows for monsterwm.
seems nice for what you wanted to achieve - make the border stand out no matter the window's
content's color or environment's color (ie wallpaper or underneath window content etc) - but did
not fit monster's ideas wink I think it's good and if I understand correctly it is configurable so one
can revert to the traditional look of normal borders.

Setting the outer and inner border width to zero should give you plain borders.

c00kiemon5ter wrote:

I expected to get floating once trying to resize/move a window,
but one needs to toggle the window to floating before that can work.
That also felt a bit strange. Also, toggling to floating mode, I think it
would be nicer to center the window instead of placing it on 0,0

Good points.

c00kiemon5ter wrote:

xinerama support seems to be missing for now, I guess it is planned in the future wink
It is really simple how it works and I can help out if you want to.

Yes it is missing but planned. I'll be glad to receive some help when I reach the implementation.

c00kiemon5ter wrote:

All in all, I'd say you did a good job, it's xcb and I like the concept.
To me, the behaviour feels strange for some things (as I explained)
but I guess this happens with all new software one tries.
Yay for the style - double borders, useless-gaps and the logo look nice.

Thanks for the compliments.


gh · da · ds

Offline

#12 2012-09-27 13:35:29

Beastie
Member
Registered: 2012-01-14
Posts: 39

Re: bspwm — A tiling window manager based on binary space partitioning

This project is nice, I'm tesing it wink

Offline

#13 2012-09-27 18:48:47

Earnestly
Member
Registered: 2011-08-18
Posts: 805

Re: bspwm — A tiling window manager based on binary space partitioning

A nice Window Manager for sure. It has a lot of lovely features like the presel command.

Unfortunately it's dependence on external programs like ewmhstatus and xbindkey is a little too much for me to bear at the moment.

This leads me to (possibly a stupid) question. Within your Readme there is no mention of a panel or bar[1]; this leads me to conclude that it's driven by something external.
I've looked through your github and came across 'launchpanel'[2] which seems to rely on 'ewmhstatus'[3] to relay relevant information to dzen. Is there no other way to access information about the WM other than through this program?

(edit: This makes it more difficult to render more traditional views. In essence: qdykq.png)

I only ask as there appears to be no documentation available about how this is achieved.

Thanks for your efforts,
definitely a WM to keep an eye on.

Last edited by Earnestly (2012-09-27 19:10:20)

Offline

#14 2012-09-27 19:57:14

bloom
Member
Registered: 2010-08-18
Posts: 749
Website

Re: bspwm — A tiling window manager based on binary space partitioning

The informations regarding the focused window / desktop and the desktop names are set by bspwm through EWMH.

ewmhstatus just reads those informations, it means that it will work with any WM that implements the required (thin) portion of EWMH.

The aforementioned view could be achieved by making ewmhstatus more expansive and malleable.

Last edited by bloom (2012-09-27 20:09:40)


gh · da · ds

Offline

#15 2012-10-10 21:12:27

bloom
Member
Registered: 2010-08-18
Posts: 749
Website

Re: bspwm — A tiling window manager based on binary space partitioning

bspwm now supports fancy panels (tint2, bmpanel2, etc.).


gh · da · ds

Offline

#16 2012-10-11 14:03:15

Jedipottsy
Member
Registered: 2008-05-22
Posts: 18

Re: bspwm — A tiling window manager based on binary space partitioning

I cant get bspwm to work, ive copied your example autostart to $XDG_CONFIG_HOME/bspwm/autostart and made it executable, setup an xbindkeysrc, set my xinit to exec bspwm. When i startx i get nothing but a blackscreen, trying to execute urxvt doesnt work, as do none of my keybinds. Ive setup the socket, even trying "export BSPWM_SOCKET=/tmp/bspwm-socket; startx" but that doesnt work either.

Thanks

Offline

#17 2012-10-11 17:50:23

bloom
Member
Registered: 2010-08-18
Posts: 749
Website

Re: bspwm — A tiling window manager based on binary space partitioning

Jedipottsy wrote:

I cant get bspwm to work, ive copied your example autostart to $XDG_CONFIG_HOME/bspwm/autostart and made it executable, setup an xbindkeysrc, set my xinit to exec bspwm. When i startx i get nothing but a blackscreen, trying to execute urxvt doesnt work, as do none of my keybinds. Ive setup the socket, even trying "export BSPWM_SOCKET=/tmp/bspwm-socket; startx" but that doesnt work either.

The example ~/.xbindkeysrc uses urxvtc, so you need to have the following in ~/.xinitrc:

    urxvtd -q -o -f

(Maybe you should have tested the wm-independent part of your ~/.xbindkeysrc in another wm first?)

Setting the socket environment variable is not required anymore.

If it doesn't help, please post all the related configuration files.


gh · da · ds

Offline

#18 2012-10-12 08:57:12

bloom
Member
Registered: 2010-08-18
Posts: 749
Website

Re: bspwm — A tiling window manager based on binary space partitioning

Jedipottsy wrote:

urxvt doesnt work, as do none of my keybinds

Of course, you must add this to your ~/.xinitrc:

    xbindkeys

gh · da · ds

Offline

#19 2012-10-12 10:25:43

Jedipottsy
Member
Registered: 2008-05-22
Posts: 18

Re: bspwm — A tiling window manager based on binary space partitioning

managed to get it working, after clearing ccache. My xbindkeys were fine, as were the other config files, must have been a compile problem. BTW is there multimonitor support?

Offline

#20 2012-10-12 10:38:28

bloom
Member
Registered: 2010-08-18
Posts: 749
Website

Re: bspwm — A tiling window manager based on binary space partitioning

Jedipottsy wrote:

is there multimonitor support?

Not yet.


gh · da · ds

Offline

#21 2012-10-17 14:33:09

bloom
Member
Registered: 2010-08-18
Posts: 749
Website

Re: bspwm — A tiling window manager based on binary space partitioning

I've created a new branch called xinerama.

However, I only have one monitor, so I can't test it thoroughly...


gh · da · ds

Offline

#22 2012-10-22 11:41:48

bloom
Member
Registered: 2010-08-18
Posts: 749
Website

Re: bspwm — A tiling window manager based on binary space partitioning

I wouldn't mind receiving some feedbacks regarding the xinerama branch…


gh · da · ds

Offline

#23 2012-10-27 10:59:26

nperry
Member
Registered: 2010-05-16
Posts: 86

Re: bspwm — A tiling window manager based on binary space partitioning

bloom wrote:

I wouldn't mind receiving some feedbacks regarding the xinerama branch…

Has this branch been removed or merged? I was going to give it a go today...

Offline

#24 2012-10-27 17:39:26

bloom
Member
Registered: 2010-08-18
Posts: 749
Website

Re: bspwm — A tiling window manager based on binary space partitioning

nperry wrote:

Has this branch been removed or merged? I was going to give it a go today...

Merged.


gh · da · ds

Offline

#25 2012-11-09 21:46:25

Iao
Member
Registered: 2012-11-09
Posts: 20

Re: bspwm — A tiling window manager based on binary space partitioning

I too was an i3 user and have now started using this new window manager.

I really like the idea behind it! I'll post some more feedback as I become more adapted to it.

Last edited by Iao (2012-11-09 21:46:59)

Offline

Board footer

Powered by FluxBB