You are not logged in.

#1126 2014-02-26 20:14:15

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

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

Hspasta wrote:

I remember there being a way to restart bspwm with the new config without killing the current session.

examples/loop
Hspasta wrote:

None of my rules appear to be working.

bspwm -v?


gh · da · ds

Offline

#1127 2014-02-26 22:19:34

cju
Member
Registered: 2013-06-23
Posts: 194

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

bloom wrote:
cju wrote:

A general question: Is there a way to get back to the previous windows arrangement after having used --balance?

It might be possible (via restore -T) if you save the tree of the involved desktop beforehand (the list of windows must be identical, otherwise you'll end up with a corrupted tree).

Yap, that does what I was looking for, thank you.

Offline

#1128 2014-02-26 23:28:46

sdothum
Member
Registered: 2013-04-26
Posts: 14

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

cju wrote:

A general question: Is there a way to get back to the previous windows arrangement after having used --balance?

I use this to reset the window panels to the default split ratio, placing the current window into the max sized window..

# reset desktop to default layout
alt + shift + e
  D=$(bspc query --desktops --desktop focused); \
  W=$(bspc query --windows --window focused); \
  bspc desktop --rename Z; \
  bspc monitor --add-desktops $D; \
  bspc desktop $D --focus; \
  for i in $(bspc query --windows --desktop Z); do bspc window $i --to-desktop $D; done; \
  bspc desktop --flip vertical; \
  bspc desktop --equalize; \
  bspc window $W --focus; \
  bspc window --swap biggest; \
  bspc desktop Z --remove

It won't necessarily give you your original window/app placement but will provide a window layout equivalent to populating a fresh desktop.

Offline

#1129 2014-02-27 03:39:34

Hspasta
Member
Registered: 2011-12-24
Posts: 189
Website

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

bloom wrote:
Hspasta wrote:

I remember there being a way to restart bspwm with the new config without killing the current session.

examples/loop
Hspasta wrote:

None of my rules appear to be working.

bspwm -v?

0.8.8

Edit: Oh, the syntax changed.

Last edited by Hspasta (2014-02-27 04:40:36)

Offline

#1130 2014-02-28 20:13:19

cju
Member
Registered: 2013-06-23
Posts: 194

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

sdothum wrote:
cju wrote:

A general question: Is there a way to get back to the previous windows arrangement after having used --balance?

I use this to reset the window panels to the default split ratio, placing the current window into the max sized window..

nice code

It won't necessarily give you your original window/app placement but will provide a window layout equivalent to populating a fresh desktop.

Thanks for your suggestions, I'll take them as an inspiration for another mega-script. big_smile

Offline

#1131 2014-03-01 02:55:18

quiv
Member
Registered: 2014-02-20
Posts: 22

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

I'm having troubles getting wine to work properly with bspwm. Yesterday I installed native steam, then wine, then steam under wine. Linux steam works well, it obeys my rules and the only problem with it is there's a tiny bit of flickering when you hover over menus. Wine and the two applications I tried running with it, winecfg and steam seem to be incredibly buggy for me.

bspwmrc

#! /bin/sh

bspc monitor -d ⮫ ⮬ ⮭ ⮮
#bspc monitor -d term web nsfw misc

bspc config top_padding		17

bspc config border_width        1
bspc config window_gap          12
bspc config split_ratio         0.50
bspc config borderless_monocle  true
bspc config gapless_monocle     true
bspc config normal_border_color "#beab8a"
bspc config active_border_color "#beab8a"
bspc config focused_border_color "#9e7f52"
bspc config urgent_border_color "#beab8a"
bspc config focus_follows_pointer true

bspc rule -a Gimp desktop=^4 follow=on floating=on
bspc rule -a Chromium desktop=^2
bspc rule -a mpv floating=on
bspc rule -a Kupfer.py focus=on
bspc rule -a Screenkey manage=off
bspc rule -a Steam desktop=^4 floating=on
bspc rule -a Wine desktop=^4 floating=on

panel &

Winecfg behaves pretty normally, navigating between tabs is fast. However trying to close the program using OK or Cancel takes around 3 seconds.

Steam through wine is horrible me for, for some reason. When you hover over a menu it appears in the middle(ish) of the screen instead of under the mouse. It's almost if bspwm recognizes it as a separate floating window and moves it to the middle of the screen as it does when I open other floating windows. The steam window itself actually moves away from the mouse when I move the pointer near it. When I'm able to interact with it, it's very slow to respond also. It takes 3-5 seconds to do anything.

It's very likely that perhaps I installed wine wrong or am missing some sort of library as I'm very new to linux. However when I tried to use openbox instead both winecfg and steam through wine ran perfectly.

I also tried adjusting the rule for wine to fullscreen or tiling instead of floating, however the same problems are still present.

Offline

#1132 2014-03-01 09:11:29

Beachy
Member
Registered: 2013-05-10
Posts: 6

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

First of all, thanks for the great work, I love bspwm.

I've been configring it just as I like it, but I've run into a few questions that I couldn't find answers to.

First, when I create a rule, if a window has more than one string in it's WM_CLASS field, I can only seem to use one of them. Is it possible to somehow use the other one? For example, I want to always start Google Music on my 7th desktop, it's WM_CLASS is

WM_CLASS(STRING) = "crx_icppfcnhkcmnfdhfhphakoifcfokfdhg", "Chromium"

However, this rule doesn't work:

bspc rule -a crx_icppfcnhkcmnfdhfhphakoifcfokfdhg desktop=^7

The other thing I'm having problems with is sending windows to my 4th desktop. In my sxhkdrc, I have

super + {_,shift + }{1-9,0}
        bspc {desktop -f,window -d} ^{1-9,10}

I can send windows using super + shift + number to any desktop except the fourth one, if I try that, nothing happens. Strangely, switching using super + number works to all desktops, including the 4th one. Any ideas on how I could figure out what's going on here?

Offline

#1133 2014-03-01 11:39:49

o_caino
Member
Registered: 2013-06-06
Posts: 166

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

Beachy wrote:

However, this rule doesn't work:

bspc rule -a crx_icppfcnhkcmnfdhfhphakoifcfokfdhg desktop=^7

Hello,
Truncate the name to 32 characters.
I had the same problem with hangouts extension. When I did a bspc query -T to see the name as seen by bspwm I noticed the name was truncated.

Offline

#1134 2014-03-01 18:42:10

ibrunton
Member
From: Canada
Registered: 2011-05-05
Posts: 270

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

Can someone help me track down what's wrong with my config file?  bspwm starts
only with default settings.  This file is `~/.config/bspwm/bspwmrc`. (I've also tried starting with `bspwm -c /path/to/configfile` and it still doesn't work.)

#!/bin/sh

bspc desktop ^1 -n I
bspc monitor -a II III IV V VI

bspc config focused_border_color '#426797'
bspc config normal_border_color	'#444444'
bspc config presel_border_color '#449966'

bspc config border_width        1
bspc config window_gap          2
bspc config split_ratio         0.52
bspc config borderless_monocle  true
bspc config gapless_monocle     true
bspc config focus_follows_pointer false
bspc config top_padding		22

# browser desktop
bspc desktop ^2 -l monocle
bspc config -d ^2 border_width 0
bspc config -d ^2 window_gap 100

# floating desktops
bspc desktop ^3 -t floating=on
bspc desktop ^6 -t floating=on

# application rules
bspc rule -a Gimp desktop=^6 follow=on floating=on
bspc rule -a Firefox desktop=^2
bspc rule -a Google-chrome desktop=^2
bspc rule -a mplayer2 floating=on
bspc rule -a feh floating=on
bspc rule -a gifview floating=on
bspc rule -a RANGER floating=on
bspc rule -a CENTRED floating=on
bspc rule -a MAILTO floating=on

panel &

In xinitrc:

sxhkd &
exec bspwm -s "$PANEL_FIFO" -p W

"panel" is currently identical to the one in the examples/ directory;  It runs
if I start it manually.

Offline

#1135 2014-03-01 19:18:43

Le Void
Member
Registered: 2011-04-23
Posts: 20

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

ibrunton wrote:

Can someone help me track down what's wrong with my config file?  bspwm starts
only with default settings.  This file is `~/.config/bspwm/bspwmrc`. (I've also tried starting with `bspwm -c /path/to/configfile` and it still doesn't work.)

#!/bin/sh

bspc desktop ^1 -n I
bspc monitor -a II III IV V VI

bspc config focused_border_color '#426797'
bspc config normal_border_color	'#444444'
bspc config presel_border_color '#449966'

bspc config border_width        1
bspc config window_gap          2
bspc config split_ratio         0.52
bspc config borderless_monocle  true
bspc config gapless_monocle     true
bspc config focus_follows_pointer false
bspc config top_padding		22

# browser desktop
bspc desktop ^2 -l monocle
bspc config -d ^2 border_width 0
bspc config -d ^2 window_gap 100

# floating desktops
bspc desktop ^3 -t floating=on
bspc desktop ^6 -t floating=on

# application rules
bspc rule -a Gimp desktop=^6 follow=on floating=on
bspc rule -a Firefox desktop=^2
bspc rule -a Google-chrome desktop=^2
bspc rule -a mplayer2 floating=on
bspc rule -a feh floating=on
bspc rule -a gifview floating=on
bspc rule -a RANGER floating=on
bspc rule -a CENTRED floating=on
bspc rule -a MAILTO floating=on

panel &

In xinitrc:

sxhkd &
exec bspwm -s "$PANEL_FIFO" -p W

"panel" is currently identical to the one in the examples/ directory;  It runs
if I start it manually.

Try entering those commands manually into a terminal after bspwm has started and see if they work (check exit codes). When you found a non-working command, look up its exact description in your bspwm manpage, or from the github repo.

Offline

#1136 2014-03-01 19:41:03

ibrunton
Member
From: Canada
Registered: 2011-05-05
Posts: 270

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

Le Void wrote:

Try entering those commands manually into a terminal after bspwm has started and see if they work (check exit codes). When you found a non-working command, look up its exact description in your bspwm manpage, or from the github repo.

All that happens is that anything with a ^ in it has to be quoted in the terminal.  But doing that in the config file doesn't make any difference.

Offline

#1137 2014-03-01 20:01:21

o_caino
Member
Registered: 2013-06-06
Posts: 166

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

ibrunton wrote:

Can someone help me track down what's wrong with my config file?  bspwm starts
only with default settings.  This file is `~/.config/bspwm/bspwmrc`. (I've also tried starting with `bspwm -c /path/to/configfile` and it still doesn't work.)

Try

chmod +x ~/.config/bspwm/bspwmrc

Offline

#1138 2014-03-01 20:08:19

ibrunton
Member
From: Canada
Registered: 2011-05-05
Posts: 270

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

o_caino wrote:

Try

chmod +x ~/.config/bspwm/bspwmrc

Thanks, that did it.  Some commands still aren't working (and running them in the terminal has no effect either) but at least the file is being sourced now.

Offline

#1139 2014-03-01 20:28:58

o_caino
Member
Registered: 2013-06-06
Posts: 166

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

ibrunton wrote:

Thanks, that did it.  Some commands still aren't working (and running them in the terminal has no effect either) but at least the file is being sourced now.

I tried your bspwmrc (except the rules) for a couple of minutes and it works for me. What is the behaviour you expect?

Offline

#1140 2014-03-01 20:31:52

ibrunton
Member
From: Canada
Registered: 2011-05-05
Posts: 270

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

o_caino wrote:
ibrunton wrote:

Thanks, that did it.  Some commands still aren't working (and running them in the terminal has no effect either) but at least the file is being sourced now.

I tried your bspwmrc (except the rules) for a couple of minutes and it works for me. What is the behaviour you expect?

I'm expecting the 2nd desktop to have a 100px window gap (`bspc config -d ^2 window_gap 100`).  Instead it only has 2px like the other desktops.

Offline

#1141 2014-03-01 21:08:28

o_caino
Member
Registered: 2013-06-06
Posts: 166

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

ibrunton wrote:

I'm expecting the 2nd desktop to have a 100px window gap (`bspc config -d ^2 window_gap 100`).  Instead it only has 2px like the other desktops.

Your bspwmrc works for me.
The 2nd desktop is set to monocle by default, so after toggling monocle I get this with two windows.

Are you sure you're in the 2nd desktop?

bspc query -d focused -D

this should report your current desktop.

Offline

#1142 2014-03-01 21:11:42

ibrunton
Member
From: Canada
Registered: 2011-05-05
Posts: 270

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

o_caino wrote:
ibrunton wrote:

I'm expecting the 2nd desktop to have a 100px window gap (`bspc config -d ^2 window_gap 100`).  Instead it only has 2px like the other desktops.

Your bspwmrc works for me.
The 2nd desktop is set to monocle by default, so after toggling monocle I get this with two windows.

Are you sure you're in the 2nd desktop?

bspc query -d focused -D

this should report your current desktop.

Quite sure, yes.

Offline

#1143 2014-03-02 16:28:48

Beachy
Member
Registered: 2013-05-10
Posts: 6

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

o_caino wrote:
Beachy wrote:

However, this rule doesn't work:

bspc rule -a crx_icppfcnhkcmnfdhfhphakoifcfokfdhg desktop=^7

Hello,
Truncate the name to 32 characters.
I had the same problem with hangouts extension. When I did a bspc query -T to see the name as seen by bspwm I noticed the name was truncated.

Thanks, but I tried changing it to 32 characters, and it's still not working. Could you maybe show me how you did your hangouts rule?

Offline

#1144 2014-03-02 16:49:02

Ploppz
Member
Registered: 2013-09-14
Posts: 311

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

bloom wrote:
joetemp wrote:

I tried using compton with BSPWM and when I tried to resize windows, it was HORRIBLY slow and unresponsive. It actually wasn't even useable.

man sxhkd, last option.

(I have the same problem) Do you mean sxhkd -s? How is that goign to help?

Offline

#1145 2014-03-02 17:20:49

cju
Member
Registered: 2013-06-23
Posts: 194

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

Ploppz wrote:
bloom wrote:
joetemp wrote:

I tried using compton with BSPWM and when I tried to resize windows, it was HORRIBLY slow and unresponsive. It actually wasn't even useable.

man sxhkd, last option.

(I have the same problem) Do you mean sxhkd -s? How is that goign to help?

Use the git version where the frequency flag (-f) is implemented and try someting like sxhkd -f 123.

Offline

#1146 2014-03-02 17:46:25

o_caino
Member
Registered: 2013-06-06
Posts: 166

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

Beachy wrote:

Thanks, but I tried changing it to 32 characters, and it's still not working. Could you maybe show me how you did your hangouts rule?

Sure

bspc rule -a "crx_nckgahadagoaajjgafhacjanaoi" floating=true

Hangouts'  WM_CLASS was 37 characters long:

WM_CLASS(STRING) = "crx_nckgahadagoaajjgafhacjanaoiihapd", "Chromium"

Offline

#1147 2014-03-02 18:07:49

Beachy
Member
Registered: 2013-05-10
Posts: 6

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

o_caino wrote:
Beachy wrote:

Thanks, but I tried changing it to 32 characters, and it's still not working. Could you maybe show me how you did your hangouts rule?

Sure

bspc rule -a "crx_nckgahadagoaajjgafhacjanaoi" floating=true

Hangouts'  WM_CLASS was 37 characters long:

WM_CLASS(STRING) = "crx_nckgahadagoaajjgafhacjanaoiihapd", "Chromium"

The WM_CLASS is actually 36 characters long and the string in your rule is 31 characters. I reduced my rule to 31 characters also and now it's working. Thank you!

Offline

#1148 2014-03-02 21:03:00

o_caino
Member
Registered: 2013-06-06
Posts: 166

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

You are right.
I used echo and wc to count the characters. I guess wc also counts the newline character.

Edit: just read the man, it counts newlines too tongue

Last edited by o_caino (2014-03-02 21:09:31)

Offline

#1149 2014-03-03 09:54:42

easysid
Member
From: India
Registered: 2013-01-01
Posts: 256

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

How can I resize floating windows using keybinds?
My current keybinds for resizing windows are the default ones

# resize window
super + alt + {h,j,k,l}
    bspc window -e {left -10,down +10,up -10,right +10}

super + alt + shift + {h,j,k,l}
    bspc window -e {right -10,up +10,down -10,left +10}

These resize tiled windows, but not floating ones.
Thanks

Offline

#1150 2014-03-03 14:14:05

o_caino
Member
Registered: 2013-06-06
Posts: 166

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

easysid wrote:

How can I resize floating windows using keybinds?

Adapt this to your needs

alt + shift + {Left,Right,Up,Down}
    xdo resize {-w -20,-w +20,-h -20,-h +20}

It uses bloom's xdo.

Source: modified from earsplit's github

Offline

Board footer

Powered by FluxBB