This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
user:jcavalu3:portfolio:hpcexperiment3 [2013/11/07 16:40] – created jcavalu3 | user:jcavalu3:portfolio:hpcexperiment3 [2013/11/21 20:43] (current) – jcavalu3 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | =====Customizing Openbox===== | ||
+ | |||
+ | After installing Openbox, I began following an online tutorial on customizing the window manager. | ||
+ | |||
+ | It was recommended that I install certain themes, obconf and pypanel: | ||
+ | |||
+ | <cli> | ||
+ | sudo apt-get install obconf openbox-themes pypanel | ||
+ | </ | ||
+ | |||
+ | The first portion that is edited is the menu, which is done by editing the menu.xml file. There are multiple methods given to edit the menu. I am using a few, just to try them out. The first one is the **obconf** program, which allows me to customize openbox graphically. I also looked directly into the **// | ||
+ | |||
+ | ====menu.xml==== | ||
+ | |||
+ | The file contents: | ||
+ | |||
+ | <code c> | ||
+ | 1 <?xml version=" | ||
+ | 2 | ||
+ | 3 < | ||
+ | 4 | ||
+ | 5 | ||
+ | 6 | ||
+ | 7 | ||
+ | 8 <menu id=" | ||
+ | 9 < | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | 33 </ | ||
+ | | ||
+ | 35 </ | ||
+ | </ | ||
+ | |||
+ | We will refer to the file in a bit. The next step on the tutorial page is setting up a background image. | ||
+ | |||
+ | ====Background Setup==== | ||
+ | |||
+ | I first install feh: | ||
+ | |||
+ | <cli> | ||
+ | sudo apt-get install feh | ||
+ | </ | ||
+ | |||
+ | Then run the following: | ||
+ | |||
+ | <cli> | ||
+ | feh --bg-scale path/ | ||
+ | </ | ||
+ | |||
+ | Setting the wallpaper this way is not permanent, but it will have to do for now. Later on in the tutorial I will be setting it permanently. For now, I will make shell script that I will run at startup that will set the background. | ||
+ | |||