个人工具

“UbuntuHelp:IceWM”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
第2行: 第2行:
 
{{Languages|UbuntuHelp:IceWM}}
 
{{Languages|UbuntuHelp:IceWM}}
 
IceWM is a window manager like Fluxbox or Metacity. It is not a desktop environment like Gnome or KDE (and is usually used independently of one). It is designed for lightweight simplicity and ease of use, but not focused on customizability. The look and feel is similar to that of Windows 95.
 
IceWM is a window manager like Fluxbox or Metacity. It is not a desktop environment like Gnome or KDE (and is usually used independently of one). It is designed for lightweight simplicity and ease of use, but not focused on customizability. The look and feel is similar to that of Windows 95.
 
+
== Why should I use IceWM? ==
== Why should I use IceWM?<br>为什么我要使用IceWM? ==
+
There are many reasons why you may want to run IceWM instead of Gnome or KDE. One important reason is that IceWM requires very little memory, and this can be important to systems that have little memory to begin with, or ones where every bit is needed (for hardcore gamers, for example).  
 
+
Others like to set up IceWM for their family members who just want something that looks and acts like Windows, and doesn't get in their way.  
There are many reasons why you may want to run IceWM instead of Gnome or KDE. One important reason is that IceWM requires very little memory, and this can be important to systems that have little memory to begin with, or ones where every bit is needed (for hardcore gamers, for example).
+
IceWM is also known for being so simple and plain, that you forget it's there. This is a good thing for expert users who don't need to customize the look of their desktop every day but just have something that's solid and easy on the eyes.
 
+
你有很多理由使用IceWM,而不是 Gnome 或者 KDE.其中很重要的一个理由是IceWM只要求很少的内存,对于启动系统所需内存要求很低,或者你对内存斤斤计较(比如骨灰级玩家)。
+
 
+
Others like to set up IceWM for their family members who just want something that looks and acts like Windows, and doesn't get in their way.
+
 
+
有些人为了家庭成员安装IceWM只是为了让系统看起来有点象WINDOWS。
+
 
+
IceWM is also known for being so simple and plain, that you forget it's there. This is a good thing for expert users who don't need to customize the look of their desktop every day but just have something that's solid and easy on the eyes.<br>当然IceWM已简单和清晰著名以至于你忘了他的存在。对于专业用户来说,这是个好事情。因为他们不需要每天定制他们的桌面,只是需要有个桌面让某些操作变得简便,当然眼睛看得舒服也是一个很重要的原因。
+
 
+
 
== Installing IceWM: ==
 
== Installing IceWM: ==
 
 
(''The following installation instructions assume you are installing IceWM on a default Ubuntu installation, which uses GDM or KDM.  Users wishing to install the absolute minimum should first consult the [[UbuntuHelp:Installation/LowMemorySystems]] wikipage for instructions more particularly directed to minimal installations.'')
 
(''The following installation instructions assume you are installing IceWM on a default Ubuntu installation, which uses GDM or KDM.  Users wishing to install the absolute minimum should first consult the [[UbuntuHelp:Installation/LowMemorySystems]] wikipage for instructions more particularly directed to minimal installations.'')
 
 
This is the easy part. IceWM is in the universe repositories. Enable the universe repositories (if necessary) and then install the following packages: <code><nowiki>icewm iceme icepref</nowiki></code>.  
 
This is the easy part. IceWM is in the universe repositories. Enable the universe repositories (if necessary) and then install the following packages: <code><nowiki>icewm iceme icepref</nowiki></code>.  
 
 
After you install, logout and select IceWM on the Sessions menu.
 
After you install, logout and select IceWM on the Sessions menu.
 
 
== Configuration: ==
 
== Configuration: ==
 
 
In the Unix tradition, IceWM uses plain text files stored in the ~/.icewm folder for its settings. The most important file is ~/.icewm/preferences. It can be edited by hand, but the easiest way is to use the graphical configuration tool icepref.
 
In the Unix tradition, IceWM uses plain text files stored in the ~/.icewm folder for its settings. The most important file is ~/.icewm/preferences. It can be edited by hand, but the easiest way is to use the graphical configuration tool icepref.
 
 
<pre><nowiki>
 
<pre><nowiki>
 
$ icepref
 
$ icepref
 
</nowiki></pre>
 
</nowiki></pre>
 
 
If you wish to edit IceWM's menus, you can do so graphically using the iceme tool:
 
If you wish to edit IceWM's menus, you can do so graphically using the iceme tool:
 
 
<pre><nowiki>
 
<pre><nowiki>
 
$ iceme
 
$ iceme
 
</nowiki></pre>
 
</nowiki></pre>
 
 
If you want certain programs to start automatically when you log in, you can use a <code><nowiki>startup</nowiki></code> file, much like the one in Fluxbox. It's located in the <code><nowiki>~/.icewm</nowiki></code> folder.
 
If you want certain programs to start automatically when you log in, you can use a <code><nowiki>startup</nowiki></code> file, much like the one in Fluxbox. It's located in the <code><nowiki>~/.icewm</nowiki></code> folder.
 
It's not there by default, so let's create it:
 
It's not there by default, so let's create it:
 
 
<pre><nowiki>
 
<pre><nowiki>
 
$ nano .icewm/startup
 
$ nano .icewm/startup
 
</nowiki></pre>
 
</nowiki></pre>
 
 
Here's an example:
 
Here's an example:
 
 
<pre><nowiki>
 
<pre><nowiki>
 
!#/bin/sh
 
!#/bin/sh
 
 
conky&
 
conky&
 
Eterm -O -x -f white --scrollbar 0 --buttonbar 0&
 
Eterm -O -x -f white --scrollbar 0 --buttonbar 0&
 
xscreensaver -nosplash&
 
xscreensaver -nosplash&
 
</nowiki></pre>
 
</nowiki></pre>
 
 
Save, and quit nano.
 
Save, and quit nano.
 
Don't forget to add an & after each app to keep them running.
 
Don't forget to add an & after each app to keep them running.
 
Now, you need to make it executable:
 
Now, you need to make it executable:
 
 
<pre><nowiki>
 
<pre><nowiki>
 
chmod +x .icewm/startup
 
chmod +x .icewm/startup
 
</nowiki></pre>
 
</nowiki></pre>
 
 
And that's all. Next time you log in, you should see the added programs running.
 
And that's all. Next time you log in, you should see the added programs running.
 
 
== Themes: ==
 
== Themes: ==
 
 
IceWM comes with around 72 preinstalled themes; some nicer themes are to be found elsewhere on the Internet. Here are some examples:
 
IceWM comes with around 72 preinstalled themes; some nicer themes are to be found elsewhere on the Internet. Here are some examples:
 
 
IceBuntu: http://themes.freshmeat.net/projects/icebuntu/
 
IceBuntu: http://themes.freshmeat.net/projects/icebuntu/
 
 
Silver XP: http://themes.freshmeat.net/projects/icewmsilverxp/
 
Silver XP: http://themes.freshmeat.net/projects/icewmsilverxp/
 
 
TrueCurve: http://themes.freshmeat.net/projects/truecurve/
 
TrueCurve: http://themes.freshmeat.net/projects/truecurve/
 
 
IceGil: http://themes.freshmeat.net/projects/icegilgrey/
 
IceGil: http://themes.freshmeat.net/projects/icegilgrey/
 
 
ThinBlack: http://themes.freshmeat.net/projects/thinblack/
 
ThinBlack: http://themes.freshmeat.net/projects/thinblack/
 
 
The first three themes are just clones of other popular themes: the first is Dapper's Human theme, the second is Windows XP, and the third is Fedora's theme.
 
The first three themes are just clones of other popular themes: the first is Dapper's Human theme, the second is Windows XP, and the third is Fedora's theme.
 
 
Installing themes is easy.
 
Installing themes is easy.
 
User themes are installed in the folder <code><nowiki>~/.icewm/themes/</nowiki></code>. This may not exist yet, so let's create it:
 
User themes are installed in the folder <code><nowiki>~/.icewm/themes/</nowiki></code>. This may not exist yet, so let's create it:
 
 
<pre><nowiki>
 
<pre><nowiki>
 
$ mkdir .icewm/themes
 
$ mkdir .icewm/themes
 
</nowiki></pre>
 
</nowiki></pre>
 
 
Now, we need to move the downloaded theme to this folder:
 
Now, we need to move the downloaded theme to this folder:
 
 
<pre><nowiki>
 
<pre><nowiki>
 
$ mv yourdownloadlfolder/youricewmtheme.tar.gz .icewm/themes/
 
$ mv yourdownloadlfolder/youricewmtheme.tar.gz .icewm/themes/
 
</nowiki></pre>
 
</nowiki></pre>
 
 
Next, go to the themes folder and unpack your downloaded theme:
 
Next, go to the themes folder and unpack your downloaded theme:
 
 
<pre><nowiki>
 
<pre><nowiki>
 
$ cd .icewm/themes
 
$ cd .icewm/themes
 
$ tar xvzf youricewmtheme.tar.gz
 
$ tar xvzf youricewmtheme.tar.gz
 
</nowiki></pre>
 
</nowiki></pre>
 
 
Done! Now, go to your start button and go to the ''themes'' section. You should now see your downloaded theme listed.
 
Done! Now, go to your start button and go to the ''themes'' section. You should now see your downloaded theme listed.
 
 
== Desktop: ==
 
== Desktop: ==
 
 
If you want a desktop with IceWM, you can do so in several ways. The best is to get ROX-Filer.  
 
If you want a desktop with IceWM, you can do so in several ways. The best is to get ROX-Filer.  
 
 
<pre><nowiki>
 
<pre><nowiki>
 
$ sudo apt-get install rox-filer
 
$ sudo apt-get install rox-filer
 
</nowiki></pre>
 
</nowiki></pre>
 
 
Then, to launch your new desktop:
 
Then, to launch your new desktop:
 
 
<pre><nowiki>
 
<pre><nowiki>
 
$ rox --pinboard=MyPinboard
 
$ rox --pinboard=MyPinboard
 
</nowiki></pre>
 
</nowiki></pre>
 
 
You can also add the above command to the startup script mentioned in the configuration section and the rox-filer will automatically start.
 
You can also add the above command to the startup script mentioned in the configuration section and the rox-filer will automatically start.
 
[[category:CategoryDocumentation]] [[category:CategoryNeedsExpansion]]
 
[[category:CategoryDocumentation]] [[category:CategoryNeedsExpansion]]
  
 
[[category:UbuntuHelp]]
 
[[category:UbuntuHelp]]

2007年11月30日 (五) 17:47的版本

IceWM is a window manager like Fluxbox or Metacity. It is not a desktop environment like Gnome or KDE (and is usually used independently of one). It is designed for lightweight simplicity and ease of use, but not focused on customizability. The look and feel is similar to that of Windows 95.

Why should I use IceWM?

There are many reasons why you may want to run IceWM instead of Gnome or KDE. One important reason is that IceWM requires very little memory, and this can be important to systems that have little memory to begin with, or ones where every bit is needed (for hardcore gamers, for example). Others like to set up IceWM for their family members who just want something that looks and acts like Windows, and doesn't get in their way. IceWM is also known for being so simple and plain, that you forget it's there. This is a good thing for expert users who don't need to customize the look of their desktop every day but just have something that's solid and easy on the eyes.

Installing IceWM:

(The following installation instructions assume you are installing IceWM on a default Ubuntu installation, which uses GDM or KDM. Users wishing to install the absolute minimum should first consult the UbuntuHelp:Installation/LowMemorySystems wikipage for instructions more particularly directed to minimal installations.) This is the easy part. IceWM is in the universe repositories. Enable the universe repositories (if necessary) and then install the following packages: icewm iceme icepref. After you install, logout and select IceWM on the Sessions menu.

Configuration:

In the Unix tradition, IceWM uses plain text files stored in the ~/.icewm folder for its settings. The most important file is ~/.icewm/preferences. It can be edited by hand, but the easiest way is to use the graphical configuration tool icepref.

$ icepref

If you wish to edit IceWM's menus, you can do so graphically using the iceme tool:

$ iceme

If you want certain programs to start automatically when you log in, you can use a startup file, much like the one in Fluxbox. It's located in the ~/.icewm folder. It's not there by default, so let's create it:

$ nano .icewm/startup

Here's an example:

!#/bin/sh
conky&
Eterm -O -x -f white --scrollbar 0 --buttonbar 0&
xscreensaver -nosplash&

Save, and quit nano. Don't forget to add an & after each app to keep them running. Now, you need to make it executable:

chmod +x .icewm/startup

And that's all. Next time you log in, you should see the added programs running.

Themes:

IceWM comes with around 72 preinstalled themes; some nicer themes are to be found elsewhere on the Internet. Here are some examples: IceBuntu: http://themes.freshmeat.net/projects/icebuntu/ Silver XP: http://themes.freshmeat.net/projects/icewmsilverxp/ TrueCurve: http://themes.freshmeat.net/projects/truecurve/ IceGil: http://themes.freshmeat.net/projects/icegilgrey/ ThinBlack: http://themes.freshmeat.net/projects/thinblack/ The first three themes are just clones of other popular themes: the first is Dapper's Human theme, the second is Windows XP, and the third is Fedora's theme. Installing themes is easy. User themes are installed in the folder ~/.icewm/themes/. This may not exist yet, so let's create it:

$ mkdir .icewm/themes

Now, we need to move the downloaded theme to this folder:

$ mv yourdownloadlfolder/youricewmtheme.tar.gz .icewm/themes/

Next, go to the themes folder and unpack your downloaded theme:

$ cd .icewm/themes
$ tar xvzf youricewmtheme.tar.gz

Done! Now, go to your start button and go to the themes section. You should now see your downloaded theme listed.

Desktop:

If you want a desktop with IceWM, you can do so in several ways. The best is to get ROX-Filer.

$ sudo apt-get install rox-filer

Then, to launch your new desktop:

$ rox --pinboard=MyPinboard

You can also add the above command to the startup script mentioned in the configuration section and the rox-filer will automatically start.