website rev 131

en: Update Hdbk E17 (new page?) + typo
author Paul Issott <paul@slitaz.org>
date Sun Aug 03 10:04:21 2008 +0000 (2008-08-03)
parents 26faab439beb
children 60f719570806
files en/doc/cookbook/index.html en/doc/handbook/x-window.html
line diff
     1.1 --- a/en/doc/cookbook/index.html	Fri Aug 01 21:50:41 2008 +0000
     1.2 +++ b/en/doc/cookbook/index.html	Sun Aug 03 10:04:21 2008 +0000
     1.3 @@ -32,7 +32,7 @@
     1.4  <h3>Table of contents</h3>
     1.5  
     1.6  <ul>
     1.7 -	<li><a href="wok-tools.html">Wok &amp; Tools.</a> - SliTaz Developer Tools.</li>
     1.8 +	<li><a href="wok-tools.html">Wok &amp; Tools.</a> - SliTaz Package Tools.</li>
     1.9  	<li><a href="receipts.html">Receipts.</a> - Receipts for creating SliTaz packages.</li>
    1.10  	<li><a href="../manuals/tazwok.en.html">Tazwok manual.</a> - Manual for compiling &amp; generating packages for SliTaz.</li>
    1.11  	<li><a href="slitaz-tools.html">SliTaz Tools</a> - The Toolbox.</li>
     2.1 --- a/en/doc/handbook/x-window.html	Fri Aug 01 21:50:41 2008 +0000
     2.2 +++ b/en/doc/handbook/x-window.html	Sun Aug 03 10:04:21 2008 +0000
     2.3 @@ -206,6 +206,41 @@
     2.4  Logout your current X session, type <code>F1</code> at Slim login and choose
     2.5  <code>e17</code> to start Enlightenment.
     2.6  </p>
     2.7 +<h4>Menu and desktop icons</h4>
     2.8 +<p>
     2.9 +Enlightenment is compliant to the Freedesktop standards. 
    2.10 +Applications are sorted by category and icons automatically appear
    2.11 +if a desktop file is supplied. The (<code>.desktop</code>) system files are
    2.12 +contained in the <code>/usr/share/applications</code> directory or hidden home
    2.13 +<code>~/.local/share/applications</code> directory. These files
    2.14 +have a simple syntax and are editable from the panel or with
    2.15 +a simple text editor. The file menus displaying categories
    2.16 +in the Enlightenment menu are found in the <code>slitaz-menus</code> 
    2.17 +package:
    2.18 +</p>
    2.19 +<pre>
    2.20 + # tazpkg get-install slitaz-menus
    2.21 +</pre>
    2.22 +<h4>An icon on the desktop</h4>
    2.23 +<p>
    2.24 +To have an icon on the desktop launching applications, you can
    2.25 +create by hand a <code>.desktop</code> file in your local directory 
    2.26 +<code>~/Desktop</code>. Desktop files placed in this directory are automatically
    2.27 +recognized by Enlightenment. A single .desktop file can 
    2.28 +contain eight lines with respectively:- the name (<code>Name</code>), generic
    2.29 +name, comment, the command to execute (<code>Exec</code>), icon, type
    2.30 +and Freedesktop categories. Example of a .desktop file for Xterm icon:
    2.31 +</p>
    2.32 +<pre class="script">
    2.33 +[Desktop Entry]
    2.34 +Name=XTerm
    2.35 +GenericName=Terminal
    2.36 +Comment=Run commands in a shell
    2.37 +Exec=xterm -bg black -fg white -cr orange -sb -bd violet -rightbar
    2.38 +Icon=/usr/share/icons/Tango/jwm/utilities-terminal.png
    2.39 +Type=Application
    2.40 +Categories=Utility;Terminal;
    2.41 +</pre>
    2.42  <p>
    2.43  Additional themes can be found on the <a href="http://www1.get-e.org/Themes/E17/">website</a>
    2.44  </p>