Você pode alternar entre janelas dentro de um aplicativo no Openbox?

7

É possível configurar um atalho de teclado no Openbox para alternar entre janelas abertas em um aplicativo? Assim como você pode no gnome 3 com alt + [key above Tab].

    
por The Silent Boatman 10.12.2011 / 20:44

3 respostas

12

Eu implementei essa função usando o wmctrl.

A parte relevante em rc.xml de openbox:

<keybind key="A-space">
  <action name="execute">
    <execute>wmctrl-switch-by-application</execute>
  </action>
</keybind>

abaixo está o código em wmctrl-switch-by-application:

# taken from https://unix.stackexchange.com/questions/26546/can-you-switch-between-windows-within-an-application-in-openbox
# taken from: http://www.st0ne.at/?q=node/58

# get id of the focused window
active_win_id=$(xprop -root | grep '^_NET_ACTIVE_W' | awk -F'# 0x' '{print $2}')

# get window manager class of current window
win_class=$(wmctrl -x -l | grep $active_win_id | awk '{print $2 " " $3}' )

# get list of all windows matching with the class above
win_list=$(wmctrl -x -l | grep -- "$win_class" | awk '{print $1}' )

# get next window to focus on
switch_to=$(echo $win_list | sed s/.*$active_win_id// | awk '{print $1}')

# if the current window is the last in the list ... take the first one
if [ -z "$switch_to" ];then
   switch_to=$(echo $win_list | awk '{print $1}')
fi

# switch to window
wmctrl -i -a $switch_to
    
por 29.04.2012 / 09:32
1

Você pode alternar entre janelas de todas as áreas de trabalho ou até mesmo incluir a própria área de trabalho e os painéis, conforme descrito nas Ações da Openbox página, mas parece não haver maneira de alternar entre as janelas do mesmo aplicativo.

    
por 10.12.2011 / 21:53
1

Você pode alternar entre qualquer janela ou aplicativo aberto pressionando alt e tab. Mesmo se houver duas janelas abertas do mesmo programa.

    
por 05.02.2012 / 22:38