diff options
author | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2020-10-28 11:24:16 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2020-10-28 11:24:16 +0530 |
commit | f58d4150264c724c36d452a9dadf9c1e2a989cd2 (patch) | |
tree | 5164b9f9ff50229889132d79fac5a5fb12fb4222 | |
parent | b74f025820361223391ca5a75dc3dbf05f0b335c (diff) |
fixed alt-w keybind conflict
-rwxr-xr-x | herbstluftwm/autostart | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/herbstluftwm/autostart b/herbstluftwm/autostart index 0196edc6..a946bbd1 100755 --- a/herbstluftwm/autostart +++ b/herbstluftwm/autostart @@ -95,8 +95,8 @@ done # cycle through tags hc keybind Mod1-l use_index +1 --skip-visible hc keybind Mod1-h use_index -1 --skip-visible -hc keybind Mod1-q use_index -1 --skip-visible -hc keybind Mod1-w use_index +1 --skip-visible +hc keybind Mod4-q use_index -1 --skip-visible +hc keybind Mod4-w use_index +1 --skip-visible # layouting hc keybind $Mod-d remove @@ -160,6 +160,7 @@ hc set smart_window_surroundings on hc set smart_frame_surroundings on hc set mouse_recenter_gap 0 + # rules hc unrule -F #hc rule class=XTerm tag=3 # move all xterms to tag 3 |