commit 1efab4d1afe82548bb2bdf307cbc7459191c263e
parent e47561c963de263a31b0cc1181276508f85b8f4d
Author: Steven Allen <steven@stebalien.com>
Date: Sat, 31 Aug 2013 12:25:47 -0400
Update bspwm examples.
Diffstat:
2 files changed, 14 insertions(+), 20 deletions(-)
diff --git a/doc/sxhkd.1 b/doc/sxhkd.1
@@ -2,12 +2,12 @@
.\" Title: sxhkd
.\" Author: [see the "Author" section]
.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
-.\" Date: 08/28/2013
+.\" Date: 08/31/2013
.\" Manual: Sxhkd Manual
.\" Source: Sxhkd 0.4.2
.\" Language: English
.\"
-.TH "SXHKD" "1" "08/28/2013" "Sxhkd 0\&.4\&.2" "Sxhkd Manual"
+.TH "SXHKD" "1" "08/31/2013" "Sxhkd 0\&.4\&.2" "Sxhkd Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
@@ -171,7 +171,7 @@ XF86LaunchB
xdotool selectwindow | xsel \-bi
super + {h,j,k,l}
- bspc focus {left,down,up,right}
+ bspc window \-f {left,down,up,right}
super + alt + {0\-9}
mpc \-q seek {0\-9}0%
@@ -180,19 +180,16 @@ super + {alt,ctrl,alt + ctrl} + XF86Eject
sudo systemctl {suspend,reboot,poweroff}
~button1
- bspc grab_pointer focus
+ bspc pointer \-g focus
super + button{1\-3}
- bspc grab_pointer {move,resize_side,resize_corner}
+ bspc pointer \-g {move,resize_side,resize_corner}
super + !button{1\-3}
- bspc track_pointer %i %i
-
-super + @button{1\-3}
- bspc ungrab_pointer
+ bspc pointer \-t %i %i
super + {_,shift + }{h,j,k,l}
- bspc {focus,shift} {left,down,up,right}
+ bspc window {\-f,\-s} {left,down,up,right}
{_,shift + ,super + }XF86MonBrightness{Down,Up}
bright {\-1,\-10,min,+1,+10,max}
@@ -201,7 +198,7 @@ super + o ; {e,w,m}
{gvim,firefox,thunderbird}
super + alt + control + {h,j,k,l} ; {0\-9}
- bspc fence_ratio {left,down,up,right} 0\&.{0\-9}
+ bspc window \-e {left,down,up,right} 0\&.{0\-9}
.fi
.if n \{\
.RE
diff --git a/doc/sxhkd.1.txt b/doc/sxhkd.1.txt
@@ -111,7 +111,7 @@ XF86LaunchB
xdotool selectwindow | xsel -bi
super + {h,j,k,l}
- bspc focus {left,down,up,right}
+ bspc window -f {left,down,up,right}
super + alt + {0-9}
mpc -q seek {0-9}0%
@@ -120,19 +120,16 @@ super + {alt,ctrl,alt + ctrl} + XF86Eject
sudo systemctl {suspend,reboot,poweroff}
~button1
- bspc grab_pointer focus
+ bspc pointer -g focus
super + button{1-3}
- bspc grab_pointer {move,resize_side,resize_corner}
+ bspc pointer -g {move,resize_side,resize_corner}
super + !button{1-3}
- bspc track_pointer %i %i
-
-super + @button{1-3}
- bspc ungrab_pointer
+ bspc pointer -t %i %i
super + {_,shift + }{h,j,k,l}
- bspc {focus,shift} {left,down,up,right}
+ bspc window {-f,-s} {left,down,up,right}
{_,shift + ,super + }XF86MonBrightness{Down,Up}
bright {-1,-10,min,+1,+10,max}
@@ -141,7 +138,7 @@ super + o ; {e,w,m}
{gvim,firefox,thunderbird}
super + alt + control + {h,j,k,l} ; {0-9}
- bspc fence_ratio {left,down,up,right} 0.{0-9}
+ bspc window -e {left,down,up,right} 0.{0-9}
----
Author