[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 15:03 (UTC)] tritehowtos:window_managers:installing_e17 [2018/10/23 16:17 (UTC)] – [Compilation] trite
Line 33: Line 33:
 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:
  
- * check+  * check
  
- * lua+  * lua
  
- * luajit+  * luajit
  
- * bullet+  * bullet
  
  
Line 152: Line 152:
  
 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 ()