diff options
author | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2020-12-25 20:37:25 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2020-12-25 20:37:25 +0530 |
commit | 5fc3683942e82d52060ea8648e3c75137ba9ea71 (patch) | |
tree | 1733aa55208ac03b1d3e85bdedca9b9f115f1457 | |
parent | 33d1448b0754964c7ba817a03f76399788499544 (diff) |
added most of the hlwm keybindings to sxhkd
-rwxr-xr-x | sxhkd/sxhkdrc | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/sxhkd/sxhkdrc b/sxhkd/sxhkdrc index 86b005eb..ae5e4107 100755 --- a/sxhkd/sxhkdrc +++ b/sxhkd/sxhkdrc @@ -1,7 +1,10 @@ -# Restart hotkey damon +# Restart hotkey daemon super + shift + x killall sxhkd && sxhkd & +# spawn command launcher +alt + Return + run_dmenu @@ -45,3 +48,20 @@ super + shift + i # toggle pseudotiling on current client super + y herbstclient pseudotile toggle + +# splitting frames +alt + shift + {h,j,k,l} + herbstclient split {left,bottom,top,right} 0.5 +# delete current frame +alt + n + herbstclient remove +# explode into different subframes +alt + m + herbstclient split explode + +# move between tags (tag 1 to 10 are handled by hc +super + {q,w,e} + herbstclient use_index {10,11,12} +# move windows to tags +super + shift + {q,w,e} + herbstclient move_index {10,11,12} |