baskerville / bspwm

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

Since latest git update mouse doesn't move windows #318

Closed 15bitgames closed 8 years ago

15bitgames commented 8 years ago

Since the latest git update and whole bunch of functions seem broken to me. I've updated by sxhkd and bspwm and even used the example sxhdrc file just in case the new changes are drastic. Still can't move any window with the mouse. Here is what I have.

#! /bin/sh

sxhkd &

bspc config border_width        1
bspc config window_gap         10
bspc config top_padding        26
bspc config left_padding       0
bspc config split_ratio         0.50
bspc config borderless_monocle  true
bspc config gapless_monocle     true
bspc config focus_by_distance   true
#bspc config focus_follows_pointer true
bspc config normal_border_color "#332d29"
bspc config active_border_color "#817267"
bspc config focused_border_color "#504339"
bspc config presel_border_color "#9a875f"
bspc config urgent_border_color "#9f7155"
bspc config focused_locked_border_color "#9a875f"
bspc config normal_frame_opacity 0.0
bspc config focused_frame_opacity 0.1

bspc monitor -d 1 2 3 4 5

and sxhkdrc

#
# bspwm hotkeys
#

super + alt + Escape
    bspc quit

super + w
    bspc window -c

super + n
    bspc desktop -l next

super + {t,p,s,f}
    bspc window -t {tiled,pseudo_tiled,floating,fullscreen}

super + {grave,Tab}
    bspc {window,desktop} -f last

super + apostrophe
    bspc window -s last

super + {o,i}
    bspc control --record-history off; \
    bspc window {older,newer} -f; \
    bspc control --record-history on

super + y
    bspc window -w last.manual

super + m
    bspc window -s biggest

super + {_,shift + }{h,j,k,l}
    bspc window -{f,s} {left,down,up,right}

super + {_,shift + }c
    bspc window -f {next,prev}

super + {comma,period}
    bspc desktop -C {backward,forward}

super + bracket{left,right}
    bspc desktop -f {prev,next}

super + ctrl + {h,j,k,l}
    bspc window -p {left,down,up,right}

super + ctrl + {_,shift + }space
    bspc {window -p cancel,desktop -c}

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}

super + ctrl + {1-9}
    bspc window -r 0.{1-9}

super + {Left,Down,Up,Right}
    xdo move {-x -20,-y +20,-y -20,-x +20}

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

~button1
    bspc pointer -g focus

super + button{1-3}
    bspc pointer -g {move,resize_side,resize_corner}

super + @button{1-3}
    bspc pointer -u

#
# wm independent hotkeys
#

super + Return
    urxvt

super + space
    dmenu_run

# make sxhkd reload its configuration files:
super + Escape
    pkill -USR1 -x sxhkd

I can't resize with the mouse or even move windows. What is the change and how do I fix this.

baskerville commented 8 years ago

Works fine here.

Does man sxhkd mention the -o and -g flags?