Wiki page archlinux-start changed with summary [Added 3 tips: basic installation programs, install login manager, commissioning environment to Wayland] by Kamil Winiewski

This commit is contained in:
Kamil Wiśniewski 2015-09-20 06:24:01 -07:00 committed by apache
parent bbdc9dab4d
commit a2e70722de
1 changed files with 50 additions and 0 deletions

View File

@ -8,6 +8,13 @@ pacman -S enlightenment
pacman -S terminology # optional terminal
</code>
Install and enable offical Enlightenment login manager - Entrance
<code bash>
yaourt entrance-git
systemctl enable entrace.service
</code>
Many apps or efl tools are available in AUR packages, for example with [[https://wiki.archlinux.org/index.php/Yaourt|Yaourt]]:
<code bash>
@ -28,3 +35,46 @@ pacman -R efl
</code>
Then go to [[/docs-efl-start]] tutorial, to install Enlightenment and/or EFL from source.
==== Programs ====
If you want to install Enlightenment base programs:
<code bash>
pacman -S rage #Video Player
yaourt ecrire-git #Text Editor
yaourt enjoy-git #Music Player
yaourt ephoto-git #Photo Viewer
#Games
yaourt efbb-git #Escape from Booty Bay (like Angry Birds)
yaourt elemines-git #Elemines minesweeper style game
</code>
To install all without games:
<code bash>
pacman -S rage && yaourt ecrire-git && yaourt enjoy-git && yaourt ephoto-git
</code>
To install all with games:
<code bash>
pacman -S rage && yaourt ecrire-git && yaourt enjoy-git && yaourt ephoto-git && yaourt efbb && yaourt elemines-git
</code>
==== Enlightenment with Wayland ====
<note important>Note: Highly Experimental !</note>
Install Wayland and Enlightenment with Wayland support
<code bash>
pacman -S wayland
yaourt enlightenment-wayland-git
</code>
After install that package, reboot system.
Login to a TTY and type enlightenment_start_wayland.
(The best run without a graphical login manager.)
Full documentation community Archlinux available at [[https://wiki.archlinux.org/index.php/Enlightenment]]