fuhsjr00 / bug.n

Tiling Window Manager for Windows
GNU General Public License v3.0
3.35k stars 212 forks source link

hotkey to activate view to left or right #168

Closed shaunsmiley-rms closed 6 years ago

shaunsmiley-rms commented 6 years ago

In awesome wm, there are keyboard shortcuts META+Left and META+Left go to the to the left or right of the currently active view. I can't find a way to do this. Of course simply using META+ works, but I'd like to add this in addition to my config.

joten commented 6 years ago

Have a look at the 'View/ Tag management' section in doc/Default_hotkeys: There are no predefined hotkeys, but you may add the following two lines to your Config.ini, which should produce this functionality:

!Left::Monitor_activateView(0, -1)
!Right::Monitor_activateView(0, +1)

Depending on what your "META" key is --: In th default configuration WinLeft and WinRight are used for adjusting size of the master area, but AltLeft and AltRight are currently not used.

shaunsmiley-rms commented 6 years ago

Brilliant! This works perfectly. Thanks!