forked from e16/e16
1
0
Fork 0

Install display manager session file and startup script.

SVN revision: 10701
This commit is contained in:
Kim Woelders 2004-07-05 21:10:36 +00:00
parent 6bdcf643cf
commit 47dae27422
7 changed files with 42 additions and 5 deletions

View File

@ -2,9 +2,13 @@
DESKTOPS = enlightenment.desktop e-gnome.desktop e-kde.desktop
XCLIENTS = Xclients.enlightenment Xclients.e-gnome Xclients.e-kde
SESSIONS = E16 E-GNOME E-KDE
STARTUP = starte16
misc_DATA = $(DESKTOPS) $(XCLIENTS) $(SESSIONS)
misc_DATA = $(DESKTOPS) $(XCLIENTS) $(SESSIONS) $(SCRIPTS)
sesm_DATA = enlightenment.desktop
bin_SCRIPTS = starte16
EXTRA_DIST = $(misc_DATA)
miscdir = $(ENLIGHTENMENT_ROOT)/misc
sesmdir = $(sysconfdir)/X11/dm/Sessions

View File

@ -1,3 +1,2 @@
#!/bin/sh
export WINDOW_MANAGER=enlightenment
exec gnome-session
exec starte16 GNOME

View File

@ -1,3 +1,2 @@
#!/bin/sh
export KDEWM=enlightenment
exec startkde
exec starte16 KDE

7
misc/e-gnome.desktop Normal file
View File

@ -0,0 +1,7 @@
[Desktop Entry]
Encoding=UTF-8
Name=E-GNOME
Comment=This session starts GNOME using enlightenment as window manager
Exec=starte16 GNOME
Icon=
Type=Application

7
misc/e-kde.desktop Normal file
View File

@ -0,0 +1,7 @@
[Desktop Entry]
Encoding=UTF-8
Name=E-KDE
Comment=This session starts KDE using enlightenment as window manager
Exec=starte16 KDE
Icon=
Type=Application

View File

@ -0,0 +1,7 @@
[Desktop Entry]
Encoding=UTF-8
Name=Enlightenment
Comment=This session starts the Enlightenment window manager
Exec=starte16
Icon=
Type=Application

14
misc/starte16 Normal file
View File

@ -0,0 +1,14 @@
#!/bin/sh
case "$1" in
GNOME)
export WINDOW_MANAGER=enlightenment
exec gnome-session
;;
KDE)
export KDEWM=enlightenment
exec startkde
;;
*)
exec enlightenment
;;
esac