Help:FAQ

From Openbox

(Difference between revisions)
Jump to: navigation, search
(I'm using rxvt-unicode or aterm, and transparency is leaving artifacts!)
Line 58: Line 58:
  
 
There is a more complicated example showing many of the things you can do with per-app settings in the [[Help:Upgrading_to_3.4#Example_of_per-app_settings| upgrading to 3.4 guide]].
 
There is a more complicated example showing many of the things you can do with per-app settings in the [[Help:Upgrading_to_3.4#Example_of_per-app_settings| upgrading to 3.4 guide]].
 +
 +
== How do I use irssi-style window switching? ==
 +
Irssi-style window switching is the use of a modifier key + a number key to switch to a specific window. For example, one could set up W-3 to switch to the third open window. This is easily accomplished in Openbox by setting up keybindings to execute an [http://l3ib.org/~syscrash/focus.c external focus-switching program] like so:
 +
<pre>
 +
<keybind key="W-1">
 +
  <action name="execute">
 +
    <execute>focus 0</execute>
 +
  </action>
 +
</keybind>
 +
<keybind key="W-2">
 +
  <action name="execute">
 +
    <execute>focus 1</execute>
 +
  </action>
 +
</keybind>
 +
</pre>
 +
and so on.

Revision as of 14:18, 1 June 2007

Contents

How do I put my desktops into a grid layout instead of a single row?

Your pager is responsible for doing this, and communicates with Openbox to make sure they agree on it. Any pager which complies with the EWMH specification should be able to do this. Examples are the gnome-panel pager and rox-pager.

If your pager does not comply with the spec, or you don't use a pager, you can use this small program to set the layout at startup, for example setlayout 0 2 2 0 for a 2x2 grid.

What is this dock I hear so much about?

The dock is where your dockapps go, if you don't have any, you don't need it. There is a large collection of dockapps available at dockapps.org that you can use.

Does anyone know of a taskbar that works well with openbox?

There are many taskbar/panels around. Some examples are: fbpanel, pypanel, perlpanel, xfce4-panel (from XFCE), gnome-panel (from GNOME) and kicker (from KDE).

How do I make things start when I start Openbox?

If you are using a desktop environment - and therefore a session manager - you just need to save your session with the programs running.

If you run Openbox without a desktop environment and session manager, see the autostart guide.

I'm using rxvt-unicode or aterm, and transparency is leaving artifacts!

This will work in Openbox 3.4. If you are running an older version or have this problem with another wm, here's what to do: By default these terminals use a transparency mode that only works by chance. They support a more proper one too. If you use aterm you have to give -sh 99 or -sh 101, with urxvt you have to give -tint white (ie in urxvt you can use -sh 100 and the proper mode). If this doesn't use the correct background image you have to use a background setting program that sets the correct hint, for example Hsetroot and Esetroot.

How do I get true 32-bit transparent windows?

True 32-bit transparency is made possible through the Composite extension. You need to have this extension enabled in your Xserver. Use this command in a terminal to make sure it is enabled:

xdpyinfo|grep Composite

It will list "Composite" if it is enabled.

As well, you need to run a composite manager for applications to access the Composite extension. You can use the xcompmgr with a command like this:

xcompmgr -c -t-5 -l-5 -r4.2 -o.55 &

Run it without any arguments if you don't want any extras like drop shadows.

You could put this command in your autostart file to make it run automatically at log in.

Lastly, you need an application which supports it, such as rxvt-unicode:

urxvt -depth 32 -fg white -bg rgba:0000/0000/0000/bbbb

You can use the transset program to give transparency to any window, with a command such as this:

transset 0.8  # then click on the window you want to make transparent

How do I remove the decorations from all my windows?

You can use the per-app settings to remove decorations from all your windows, or any group of them. The per-app settings are in the <applications> section of your ~/.config/openbox/rc.xml (or the system-wide /etc/xdg/openbox/rc.xml).

Here is an example that would remove decorations from all of your windows except Firefox:

<applications>

  <!-- match all windows, and remove their decorations -->
  <application class="*">
    <decor>no</decor>
  </application>

  <!-- but give decorations back to Firefox -->
  <application name="Firefox*">
    <decor>yes</decor>
  </application>

</applications>

There is a more complicated example showing many of the things you can do with per-app settings in the upgrading to 3.4 guide.

How do I use irssi-style window switching?

Irssi-style window switching is the use of a modifier key + a number key to switch to a specific window. For example, one could set up W-3 to switch to the third open window. This is easily accomplished in Openbox by setting up keybindings to execute an external focus-switching program like so:

<keybind key="W-1">
  <action name="execute">
    <execute>focus 0</execute>
  </action>
</keybind>
<keybind key="W-2">
  <action name="execute">
    <execute>focus 1</execute>
  </action>
</keybind>

and so on.

Personal tools