website diff en/doc/handbook/enlightenment.html @ rev 149
en: Add Xvesa Terminal to Hdbk
author | Paul Issott <paul@slitaz.org> |
---|---|
date | Sat Aug 30 18:04:04 2008 +0000 (2008-08-30) |
parents | |
children | 06ff692df9a8 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/en/doc/handbook/enlightenment.html Sat Aug 30 18:04:04 2008 +0000 1.3 @@ -0,0 +1,107 @@ 1.4 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 1.5 + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 1.6 +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> 1.7 +<head> 1.8 + <title>SliTaz Handbook (en) - Enlightenment</title> 1.9 + <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /> 1.10 + <meta name="description" content="slitaz English handbook" /> 1.11 + <meta name="expires" content="never" /> 1.12 + <meta name="modified" content="2008-02-26 18:30:00" /> 1.13 + <meta name="publisher" content="www.slitaz.org" /> 1.14 + <meta name="author" content="Christophe Lincoln"/> 1.15 + <link rel="shortcut icon" href="favicon.ico" /> 1.16 + <link rel="stylesheet" type="text/css" href="book.css" /> 1.17 +</head> 1.18 +<body bgcolor="#ffffff"> 1.19 + 1.20 +<!-- Header and quick navigation --> 1.21 +<div id="header"> 1.22 +<div align="right" id="quicknav"> 1.23 + <a name="top"></a> 1.24 + <a href="cmdline.html">Commands</a> | 1.25 + <a href="index.html">Table of contents</a> 1.26 +</div> 1.27 +<h1><font color="#3E1220">SliTaz Handbook (en)</font></h1> 1.28 +</div> 1.29 + 1.30 +<!-- Content. --> 1.31 +<div id="content"> 1.32 +<div class="content-right"></div> 1.33 + 1.34 +<h2><font color="#DF8F06">Enlightenment</font></h2> 1.35 + 1.36 +<a name="enlightenment"></a> 1.37 +<h3>Enlightenment (e17)</h3> 1.38 +<p> 1.39 +Enlightenment is a complete desktop environment, fully configurable with the 1.40 +mouse and offering many themes. The version supplied by the SliTaz project 1.41 +is known as e17 and is still in development, this version is considered stable 1.42 +enough to be incorporated into the distribution. Enlightenment was designed to 1.43 +be deployed on systems with limited resources, as well as more powerful 1.44 +systems. It allows for wallpapers, menus, animated and interactive gadgets 1.45 +and knows how to manage virtual desktops. To install e17: 1.46 +</p> 1.47 +<pre> # tazpkg get-install enlightenment 1.48 +</pre> 1.49 +<p> 1.50 +Logout your current X session, type <code>F1</code> at Slim login and choose 1.51 +<code>e17</code> to start Enlightenment. 1.52 +</p> 1.53 +<h4>Menu and desktop icons</h4> 1.54 +<p> 1.55 +Enlightenment is compliant to the Freedesktop standards. 1.56 +Applications are sorted by category and icons automatically appear 1.57 +if a desktop file is supplied. The (<code>.desktop</code>) system files are 1.58 +contained in the <code>/usr/share/applications</code> directory or hidden home 1.59 +<code>~/.local/share/applications</code> directory. These files 1.60 +have a simple syntax and are editable from the panel or with 1.61 +a simple text editor. The file menus displaying categories 1.62 +in the Enlightenment menu are found in the <code>slitaz-menus</code> 1.63 +package: 1.64 +</p> 1.65 +<pre> # tazpkg get-install slitaz-menus 1.66 +</pre> 1.67 +<h4>An icon on the desktop</h4> 1.68 +<p> 1.69 +To have an icon on the desktop launching applications, you can 1.70 +create by hand a <code>.desktop</code> file in your local directory 1.71 +<code>~/Desktop</code>. Desktop files placed in this directory are automatically 1.72 +recognized by Enlightenment. A single .desktop file can 1.73 +contain eight lines with respectively:- the name (<code>Name</code>), generic 1.74 +name, comment, the command to execute (<code>Exec</code>), icon, type 1.75 +and Freedesktop categories. Example of a .desktop file for Xterm icon: 1.76 +</p> 1.77 +<pre class="script">[Desktop Entry] 1.78 +Name=XTerm 1.79 +GenericName=Terminal 1.80 +Comment=Run commands in a shell 1.81 +Exec=xterm -bg black -fg white -cr orange -sb -bd violet -rightbar 1.82 +Icon=/usr/share/icons/Tango/jwm/utilities-terminal.png 1.83 +Type=Application 1.84 +Categories=Utility;Terminal; 1.85 +</pre> 1.86 +<p> 1.87 +Additional themes can be found on the <a href="http://www1.get-e.org/Themes/E17/">website</a> 1.88 +</p> 1.89 + 1.90 +<!-- End of content --> 1.91 +</div> 1.92 + 1.93 +<!-- Footer. --> 1.94 +<div id="footer"> 1.95 + <div class="footer-right"></div> 1.96 + <a href="#top">Top of the page</a> | 1.97 + <a href="index.html">Table of contents</a> 1.98 +</div> 1.99 + 1.100 +<div id="copy"> 1.101 + Copyright © 2008 <a href="http://www.slitaz.org/en/">SliTaz</a> - 1.102 + <a href="http://www.gnu.org/licenses/gpl.html">GNU General Public License</a>;<br /> 1.103 + Documentation is under 1.104 + <a href="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License</a> 1.105 + and code is <a href="http://validator.w3.org/">valid xHTML 1.0</a>. 1.106 +</div> 1.107 + 1.108 +</body> 1.109 +</html> 1.110 +