Help:FAQ

From Openbox

(Difference between revisions)
Jump to: navigation, search
m (How do I get true 32-bit transparent windows?)
Line 32: Line 32:
 
Lastly, you need an application which supports it, such as rxvt-unicode:
 
Lastly, you need an application which supports it, such as rxvt-unicode:
 
<code><pre>urxvt -depth 32 -fg white -bg rgba:0000/0000/0000/bbbb</pre></code>
 
<code><pre>urxvt -depth 32 -fg white -bg rgba:0000/0000/0000/bbbb</pre></code>
 +
 +
== 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 <code>~/.config/openbox/rc.xml</code> (or the system-wide <code>/etc/xdg/openbox/rc.xml</code>).
 +
 +
Here is an example that would remove decorations from all of your windows except Firefox:
 +
<code><pre>
 +
<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>
 +
</pre></code>
 +
 +
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]].

Revision as of 20:54, 25 May 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!

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

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.

Personal tools