website annotate en/doc/handbook/enlightenment.html @ rev 669

Move year to slitaz.css
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 30 21:52:02 2010 +0200 (2010-10-30)
parents 0e0bc81a63ee
children
rev   line source
paul@135 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
paul@135 2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
paul@135 3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
paul@135 4 <head>
paul@135 5 <title>SliTaz Handbook (en) - Enlightenment</title>
paul@135 6 <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
paul@135 7 <meta name="description" content="slitaz English handbook" />
paul@135 8 <meta name="expires" content="never" />
paul@135 9 <meta name="modified" content="2008-02-26 18:30:00" />
paul@135 10 <meta name="publisher" content="www.slitaz.org" />
paul@135 11 <meta name="author" content="Christophe Lincoln"/>
paul@135 12 <link rel="shortcut icon" href="favicon.ico" />
paul@135 13 <link rel="stylesheet" type="text/css" href="book.css" />
paul@135 14 </head>
paul@135 15 <body bgcolor="#ffffff">
paul@135 16
paul@135 17 <!-- Header and quick navigation -->
paul@135 18 <div id="header">
paul@135 19 <div align="right" id="quicknav">
paul@135 20 <a name="top"></a>
paul@135 21 <a href="cmdline.html">Commands</a> |
paul@135 22 <a href="index.html">Table of contents</a>
paul@135 23 </div>
paul@135 24 <h1><font color="#3E1220">SliTaz Handbook (en)</font></h1>
paul@135 25 </div>
paul@135 26
paul@135 27 <!-- Content. -->
paul@135 28 <div id="content">
paul@135 29 <div class="content-right"></div>
paul@135 30
paul@135 31 <h2><font color="#DF8F06">Enlightenment</font></h2>
paul@135 32
paul@135 33 <a name="enlightenment"></a>
paul@135 34 <h3>Enlightenment (e17)</h3>
paul@135 35 <p>
paul@135 36 Enlightenment is a complete desktop environment, fully configurable with the
paul@135 37 mouse and offering many themes. The version supplied by the SliTaz project
paul@135 38 is known as e17 and is still in development, this version is considered stable
paul@135 39 enough to be incorporated into the distribution. Enlightenment was designed to
paul@135 40 be deployed on systems with limited resources, as well as more powerful
paul@135 41 systems. It allows for wallpapers, menus, animated and interactive gadgets
paul@135 42 and knows how to manage virtual desktops. To install e17:
paul@135 43 </p>
paul@135 44 <pre> # tazpkg get-install enlightenment
paul@135 45 </pre>
paul@135 46 <p>
paul@135 47 Logout your current X session, type <code>F1</code> at Slim login and choose
paul@135 48 <code>e17</code> to start Enlightenment.
paul@135 49 </p>
paul@135 50 <h4>Menu and desktop icons</h4>
paul@135 51 <p>
paul@135 52 Enlightenment is compliant to the Freedesktop standards.
paul@135 53 Applications are sorted by category and icons automatically appear
paul@135 54 if a desktop file is supplied. The (<code>.desktop</code>) system files are
paul@135 55 contained in the <code>/usr/share/applications</code> directory or hidden home
paul@135 56 <code>~/.local/share/applications</code> directory. These files
paul@135 57 have a simple syntax and are editable from the panel or with
paul@135 58 a simple text editor. The file menus displaying categories
paul@135 59 in the Enlightenment menu are found in the <code>slitaz-menus</code>
paul@135 60 package:
paul@135 61 </p>
paul@135 62 <pre> # tazpkg get-install slitaz-menus
paul@135 63 </pre>
paul@135 64 <h4>An icon on the desktop</h4>
paul@135 65 <p>
paul@135 66 To have an icon on the desktop launching applications, you can
paul@135 67 create by hand a <code>.desktop</code> file in your local directory
paul@135 68 <code>~/Desktop</code>. Desktop files placed in this directory are automatically
paul@135 69 recognized by Enlightenment. A single .desktop file can
paul@135 70 contain eight lines with respectively:- the name (<code>Name</code>), generic
paul@135 71 name, comment, the command to execute (<code>Exec</code>), icon, type
paul@135 72 and Freedesktop categories. Example of a .desktop file for Xterm icon:
paul@135 73 </p>
paul@135 74 <pre class="script">[Desktop Entry]
paul@135 75 Name=XTerm
paul@135 76 GenericName=Terminal
paul@135 77 Comment=Run commands in a shell
paul@135 78 Exec=xterm -bg black -fg white -cr orange -sb -bd violet -rightbar
paul@135 79 Icon=/usr/share/icons/Tango/jwm/utilities-terminal.png
paul@135 80 Type=Application
paul@135 81 Categories=Utility;Terminal;
paul@135 82 </pre>
paul@135 83 <p>
pankso@341 84 Additional themes can be found on:
pankso@341 85 <a href="http://exchange.enlightenment.org/">exchange.enlightenment.org/</a>
paul@135 86 </p>
paul@135 87
paul@135 88 <!-- End of content -->
paul@135 89 </div>
paul@135 90
paul@135 91 <!-- Footer. -->
paul@135 92 <div id="footer">
paul@135 93 <div class="footer-right"></div>
pascal@550 94 <a href="enlightenment.html#top">Top of the page</a> |
paul@135 95 <a href="index.html">Table of contents</a>
paul@135 96 </div>
paul@135 97
paul@135 98 <div id="copy">
pascal@669 99 Copyright &copy; <span class="year"></span> <a href="http://www.slitaz.org/en/">SliTaz</a> -
paul@135 100 <a href="http://www.gnu.org/licenses/gpl.html">GNU General Public License</a>;<br />
paul@135 101 Documentation is under
paul@135 102 <a href="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License</a>
paul@135 103 and code is <a href="http://validator.w3.org/">valid xHTML 1.0</a>.
paul@135 104 </div>
paul@135 105
paul@135 106 </body>
paul@135 107 </html>
paul@135 108