Openbox on Jessie: Alt+Tab no longer works across desktops - Raspberry Pi Forums
i used have wheezy set 2 desktops, , switch between open tasks on desktop following in .config/openbox/lxde-pi-rc.xml:
under jessie, same configuration (plus multiple desktops set obconf) allow alt+tab switch between windows on current desktop. there else should enabling? i've been using virtual desktops decades, , miss feature.
code: select all
<keybind key="a-tab"> <action name="nextwindow"/> <alldesktops>yes</alldesktops> </keybind> <keybind key="a-s-tab"> <action name="previouswindow"/> <alldesktops>yes</alldesktops> </keybind>
for record, how fix it:
change
change
code: select all
<!-- keybindings window switching --> <keybind key="a-tab"> <action name="nextwindow"/> </keybind> <keybind key="a-s-tab"> <action name="previouswindow"/> </keybind>code: select all
<!-- keybindings window switching --> <keybind key="a-tab"> <action name="nextwindow"> <alldesktops>yes</alldesktops> </action> </keybind> <keybind key="a-s-tab"> <action name="previouswindow"> <alldesktops>yes</alldesktops> </action> </keybind>
raspberrypi
Comments
Post a Comment