Then I needed to remap the keyboard shortcuts for switching/cycling through windows. I'm using a Mac Pro at home, and left Command-Tab alone. Instead, I wanted my keyboard's control + tab keys to cycle through windows. In XFCE, I would have gone to the window manager settings in the main settings dialog. However, it looks like I had to manually edit Openbox's keyboard mappings in an XML file.
I ran xev in the X session to find out which key was being pressed. It said Control_L and Tab were being pressed. When I edited the /.config/openbox/lxde-rc.xml file from:
1: <!-- Keybindings for window switching -->
2: <keybind key="A-Tab">
3: <action name="NextWindow"/>
4: </keybind>
1: <!-- Keybindings for window switching -->
2: <keybind key="Control_L-Tab">
3: <action name="NextWindow"/>
4: </keybind>
1: <!-- Keybindings for window switching -->
2: <keybind key="C-Tab">
3: <action name="NextWindow"/>
4: </keybind>
References:
- http://openbox.org/wiki/Help:Bindings
- http://superuser.com/questions/248517/show-keys-pressed-in-linux
- http://linux.die.net/man/1/xev