[2024-feb-29] Sad news: Eric Layton aka Nocturnal Slacker aka vtel57 passed away on Feb 26th, shortly after hospitalization. He was one of our Wiki's most prominent admins. He will be missed.

Welcome to the Slackware Documentation Project

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
howtos:window_managers:installing_e17 [2018/08/14 14:57 (UTC)] tritehowtos:window_managers:installing_e17 [2018/10/23 16:17 (UTC)] – [Compilation] trite
Line 32: Line 32:
  
 First you need to install the dependencies needed to compile Enlightenment. These can be found in SlackBuilds-website or with sbopkg: First you need to install the dependencies needed to compile Enlightenment. These can be found in SlackBuilds-website or with sbopkg:
-<code bash> 
- * check 
  
- lua+  check
  
- * luajit+  * lua 
 + 
 +  * luajit 
 + 
 +  * bullet
  
- * bullet 
-</code> 
  
 Once you have those packages installed we can proceed to make a build directory and commence with the fun stuff! Once you have those packages installed we can proceed to make a build directory and commence with the fun stuff!
Line 130: Line 130:
  
  
-Should look something like this (please check already existing .desktop files for other language examples):+Should look something like this (please check already existing .desktop files for other language examples and please add relevant lines for your language):
  
 <code bash> <code bash>
Line 147: Line 147:
 Name=Enlightenment  Name=Enlightenment 
  
-... (cut because there is an entry for each language, please add relevant lines for your language) ... +Comment[en_GB]=Enlightenment by Enlightenment
- +
-Comment[en_GB]=Enlightenment by Enlightenmen+
  
 Comment[sv]=Enlightenment av Enlightenment  Comment[sv]=Enlightenment av Enlightenment 
- 
-... (cut because there is an entry for each language, please add relevant lines for your language) ... 
  
 X-KDE-PluginInfo-Version=0.22.9 X-KDE-PluginInfo-Version=0.22.9
 +</code>
 +
 +If you want to start enlightenment with startx (xinit):
 +/etc/X11/xinit/xinitrc.e22
 +<code>
 +#!/bin/sh
 +
 +userresources=$HOME/.Xresources
 +usermodmap=$HOME/.Xmodmap
 +sysresources=/etc/X11/xinit/.Xresources
 +sysmodmap=/etc/X11/xinit/.Xmodmap
 +
 +# merge in defaults and keymaps
 +
 +[ -f $sysresources ] && xrdb -merge $sysresources
 +[ -f $sysmodmap ] && xmodmap $sysmodmap
 +[ -f $userresources ] && xrdb -merge $userresources
 +[ -f $usermodmap ] && xmodmap $usermodmap
 +
 +if [ -z "$DESKTOP_SESSION" -a -x /usr/bin/ck-launch-session ]; then
 +  export DESKTOP_SESSION="e22"
 +  exec ck-launch-session dbus-launch --exit-with-session enlightenment_start
 +else
 +  export DESKTOP_SESSION="e22"
 +  exec enlightenment_start
 +fi
 </code> </code>
  
 howtos:window_managers:installing_e17 ()