Skip to content
Snippets Groups Projects
Commit 0257ba72 authored by Eric Vidal's avatar Eric Vidal :speech_balloon:
Browse files

pass through consolekit by default to call X server

parent b898c62a
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
exec /usr/bin/jwm
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
[ -x "$f" ] && . "$f"
done
unset f
fi
exec ck-launch-session dbus-launch --sh-syntax --exit-with-session jwm
#!/bin/bash
exec ck-launch-session startkde
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
[ -x "$f" ] && . "$f"
done
unset f
fi
exec ck-launch-session dbus-launch --sh-syntax --exit-with-session startkde
#!/bin/bash
exec ck-launch-session startxfce4
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
[ -x "$f" ] && . "$f"
done
unset f
fi
exec ck-launch-session dbus-launch --sh-syntax --exit-with-session startxfce4
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment