![]() |
ubuntu.com - launchpad.net - ubuntu help
|
|
|||||||
Ubuntu 9.10 is out!!!
When downloading Ubuntu 9.10 please consider using bittorrent to get your copy of Ubuntu. The Ubuntu Developers Summit for Lucid Lynx will be held the week of 16-Nov-2009 till 20-Nov-2009 in Dallas, TX USA. Visit the the Ubuntu wiki for more information about UDS and how to participate remotely. |
|
Tutorials & Tips The place to find Ubuntu related Tips & Tricks. |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
May the Ubuntu Be With You!
![]() Join Date: Apr 2005
Location: Under the Jolly Roger
Beans: 1,564
|
Stormy Eyes' Guide to the Openbox Window Manager
Introduction
Metacity, while a fair default, is not the only window manager you can use with GNOME. Openbox is a lightweight, customizable window manager that works either by itself or as a drop-in replacement for Metacity. Its advantages include the ability to switch desktops with the mouse wheel, a built-in, customizable menu that allows stand-alone operation with some GNOME components in order to build a GNOME-like system on low-end gear, and (this is subjective) better looking, cleaner themes that don't depend on resource-intensive pixmaps. Installation and Basic Usage If you have the Universe repository, all you have to do to install Openbox is enter a command: Code:
sudo apt-get install openbox obconf Code:
openbox --replace Now that you have Openbox running, you'll probably need some themes. I can help you with that, being an Openbox fan. But first, I should tell you how to obtain, install, and select themes. Once you have downloaded a theme to your home directory, open a terminal and enter the following commands (This example assumes you've downloaded Mistodon to $HOME): Code:
cd ~/.themes tar xzvf ~/mistodon.tar.gz Theme List and Links The following list names themes I've made available to the public, with screenshots and descriptions. As other users provide links to their themes, I will post them after my list.
Forum member Smoon has his own theme page. It's written in German, but the screenshots provide adequate explanation. Also, boxwhore.org hosts Openbox themes with screenshots. (No, I didn't pick the name.) More importantly, the developers/maintainers of Openbox provide documentation at this location. It covers the basic operating principles, though it doesn't offer in-depth coverage on how to theme Openbox. I may provide a section on advanced theming later on. Since Openbox does not handle setting wallpapers, you have to use external tools. I recommend feh, which is primarily an image viewer but includes "set wallpaper" functionality both in its menu and as a commandline tool. Fun with Keybindings; or, getting an ALT+Tab that rocks like ninja. Openbox's default ALT+Tab functionality is a bit limited compared to Metacity, which shows a dialog listing all the open apps on a given workspace similar to Windows. You don't have to settle for Openbox's anemic ALT+Tab. If you're using Openbox, try middle-clicking anywhere on your desktop. You'll see a menu listing each of your workspaces, starting with the first, and each workspace entry will have a submenu displaying the running windows on that workspace, with iconified (minimised) windows in brackets. It's also possible to bind this menu, which is referred to internally as the "Client List Menu", to any key you like, and then to navigate that menu with your keyboard's arrow keys. Just follow the steps below. 1. Open a terminal and enter the following command: Code:
gedit ~/.config/openbox/rc.xml Code:
<keybind key="A-Tab">
<action name="NextWindow"/>
</keybind>
<keybind key="A-S-Tab">
<action name="PreviousWindow"/>
</keybind>
Code:
<keybind key="A-Tab">
<action name="ShowMenu"><menu>client-list-menu</menu></action>
</keybind>
<keybind key="A-S-Tab">
<action name="ShowMenu"><menu>client-list-menu</menu></action>
</keybind>
5. If you're using Openbox as part of GNOME, and Openbox is part of your GNOME session, then typing killall openbox at the terminal should cause GNOME to restart Openbox for you. If GNOME won't play ball, you should be able to click on the Applications menu, select "Run Application", and type "openbox" into the prompt. Or, you could avoid all this by logging out and logging in again. If you're using Openbox on its own, then right-click on the desktop for the main menu, and choose the Reconfigure option. Openbox will reread its config file. By following the above steps, you've modified the keybindings for ALT+Tab and SHIFT+ALT+Tab to bring up the same client list menu that appears when you middle-click on the desktop. You can navigate it using your arrow keys, and press "Enter" to go to a running app, even if that app is on a different workspace. More Fun with Keybindings; or, opening apps without reaching for the rodent. So, are you tired of having to take your hands off the keyboard in order to open a program? I can help you with that too. The principles are the same as when you modified your config, (~/.config/openbox/rc.xml) to give you a sweet ALT+Tab. Open your config file as explained in "Fun with Keybindings; or, getting an ALT+Tab that rocks like ninja." and do the following: 1. Find the line that reads "<chainQuitKey>C-g</chainQuitKey>". Create a blank line between this keybinding and the next. 2. If you're using GNOME or have gnome-panel running in Openbox, paste the following XML: Code:
<keybind key="A-F1">
<action name="execute"><execute>gnome-panel-control --main-menu</execute></action>
</keybind>
<keybind key="A-F2">
<action name="execute"><execute>gnome-panel-control --run-dialog</execute></action>
</keybind>
If you aren't using GNOME or gnome-panel, but want a "Run Program" dialog, then run sudo apt-get install gmrun from a terminal. Once you've installed gmrun, paste the following XML into the editor at the blank line you created in step 1: Code:
<keybind key="A-F1">
<action name="ShowMenu"><menu>root-menu</menu></action>
</keybind>
<keybind key="A-F2">
<action name="execute"><execute>gmrun</execute></action>
</keybind>
3. Save your changes, close the editor, and restart Openbox. Even More Fun with Keybindings: Switch to a Specific Desktop It's possible to configure keybindings in Openbox to allow you to switch to a specific desktop. For the purpose of this demonstration, I'll show you how to use ALT+1 to switch to desktop 1, ALT+2 to switch to desktop 2, etc. Just paste the following code into your ~/.config/openbox/rc.xml file's <keyboard> section, save, and restart Openbox: Code:
<keybind key="A-1">
<action name="Desktop"><desktop>1</desktop></action>
</keybind>
<keybind key="A-2">
<action name="Desktop"><desktop>2</desktop></action>
</keybind>
<keybind key="A-3">
<action name="Desktop"><desktop>3</desktop></action>
</keybind>
<keybind key="A-4">
<action name="Desktop"><desktop>4</desktop></action>
</keybind>
__________________
My sole duty is to my own happiness and well-being. I recognize no other. Last edited by Stormy Eyes; May 21st, 2005 at 12:51 AM.. Reason: Added a keybinding recipe... |
|
|
|
|
|
#2 |
|
A Carafe of Ubuntu
![]() Join Date: Dec 2004
Location: Australia
Beans: 98
Ubuntu 7.04 Feisty Fawn
|
Re: Openbox Themes
Hey,
When the command openbox --replace is run, is it permanent, or can I logout and then back in again or reboot to go back to Metacity if I wish? - Rpg Cyco |
|
|
|
|
|
#3 |
|
Cloned
![]() |
Re: Openbox Themes
If you choose to save your session on logout, it will take over on your next login as well. If you DON'T choose to save your session, logging out and back in will bring back metacity
__________________
This is where my nickname comes from! faq | search | wiki Twitter: @panickedthumb |
|
|
|
|
|
#4 |
|
Gee! These Aren't Roasted!
![]() Join Date: Apr 2005
Location: Lahti, Finland
Beans: 167
Kubuntu 6.10 Edgy
|
Re: Openbox Themes
Is there a way to get ALT+F<number> to change workspaces? I have readed the Openbox Documentation and edited the rc.xml and others, but it didn't go well. I'm running Openbox by using startx at TTY.
I'd change immediately to Openbox, if I only could get that keybinding to work. Oh, by the way Stormy Eyes, nice themes. I like especially that Mistodon Last edited by Juippisi; May 14th, 2005 at 06:38 AM.. |
|
|
|
|
|
#5 | |
|
May the Ubuntu Be With You!
![]() Join Date: Apr 2005
Location: Under the Jolly Roger
Beans: 1,564
|
Re: Openbox Themes
Quote:
Also, if you decide you don't like Openbox, you can get Metacity back by clicking on "Run Program" and typing metacity --replace at the prompt.
__________________
My sole duty is to my own happiness and well-being. I recognize no other. |
|
|
|
|
|
|
#6 | |
|
May the Ubuntu Be With You!
![]() Join Date: Apr 2005
Location: Under the Jolly Roger
Beans: 1,564
|
Re: Openbox Themes
Quote:
<keybind key="A-F1"> <action name="Desktop"><desktop>1</desktop></action></keybind> I'm glad you liked Mistodon. I've added a new theme, "Martian", for those who like Ubuntu's default colors.
__________________
My sole duty is to my own happiness and well-being. I recognize no other. |
|
|
|
|
|
|
#7 |
|
Gee! These Aren't Roasted!
![]() Join Date: Apr 2005
Location: Lahti, Finland
Beans: 167
Kubuntu 6.10 Edgy
|
Re: Openbox Themes
Code:
<keyboard>
<chainQuitKey>C-g</chainQuitKey>
<keybind key="A-F1">
<action name="Desktop"><desktop>1</desktop></action>
</keybind>
<keybind key="A-F10">
<action name="MaximizeFull"/>
</keybind>
<keybind key="A-F5">
<action name="UnmaximizeFull"/>
</keybind>
<keybind key="A-F12">
<action name="ToggleShade"/>
</keybind>
<keybind key="C-A-Left">
<action name="DesktopLeft"><wrap>no</wrap></action>
</keybind>
<keybind key="C-A-Right">
<action name="DesktopRight"><wrap>no</wrap></action>
</keybind>
<keybind key="C-A-Up">
<action name="DesktopUp"><wrap>no</wrap></action>
</keybind>
<keybind key="C-A-Down">
<action name="DesktopDown"><wrap>no</wrap></action>
</keybind>
... and all unnecessary bindings
EDIT: I was thinking, that if I use xfce4-panel with openbox, I may not need that feature at all. I must consider, but thanks anyway Last edited by Juippisi; May 14th, 2005 at 10:56 AM.. |
|
|
|
|
|
#8 | ||
|
May the Ubuntu Be With You!
![]() Join Date: Apr 2005
Location: Under the Jolly Roger
Beans: 1,564
|
Re: Openbox Themes
Quote:
Quote:
__________________
My sole duty is to my own happiness and well-being. I recognize no other. |
||
|
|
|
|
|
#9 | |
|
Gee! These Aren't Roasted!
![]() Join Date: Apr 2005
Location: Lahti, Finland
Beans: 167
Kubuntu 6.10 Edgy
|
Re: Openbox Themes
Quote:
Well, my temporary solution for this is to use xftaskbar4. With that, I just take cursor on top of taskbar and scroll mouse and it works. Thanks for your bother with my problem, but I think this is ok for me And now I'll have to make my own menu for my Openbox and then everything will be just great. |
|
|
|
|
|
|
#10 | |
|
May the Ubuntu Be With You!
![]() Join Date: Apr 2005
Location: Under the Jolly Roger
Beans: 1,564
|
Re: Openbox Themes
Quote:
cp /etc/xdg/openbox/menu.xml ~/.config/openbox/menu.xmlThis will give you a copy of the default menu to hack on.
__________________
My sole duty is to my own happiness and well-being. I recognize no other. |
|
|
|
|
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|