diff options
author | BlackNoxis <steven.darklight@gmail.com> | 2014-02-15 23:24:26 +0200 |
---|---|---|
committer | BlackNoxis <steven.darklight@gmail.com> | 2014-02-15 23:24:26 +0200 |
commit | 7224c1253228e5c29c78cb3f0f26ce34770f2356 (patch) | |
tree | 1684924656132935256e034f35f92abee6623265 /x11-misc/lightdm-base/files |
Added ebuilds for kogaion desktop
Diffstat (limited to 'x11-misc/lightdm-base/files')
-rw-r--r-- | x11-misc/lightdm-base/files/README.gentoo | 11 | ||||
-rw-r--r-- | x11-misc/lightdm-base/files/Xsession | 69 | ||||
-rw-r--r-- | x11-misc/lightdm-base/files/lightdm | 8 | ||||
-rw-r--r-- | x11-misc/lightdm-base/files/lightdm-1.7.7-session-wrapper.patch | 13 | ||||
-rw-r--r-- | x11-misc/lightdm-base/files/lightdm-autologin | 6 | ||||
-rw-r--r-- | x11-misc/lightdm-base/files/lightdm.service | 14 | ||||
-rw-r--r-- | x11-misc/lightdm-base/files/session-wrapper-lightdm.patch | 13 |
7 files changed, 134 insertions, 0 deletions
diff --git a/x11-misc/lightdm-base/files/README.gentoo b/x11-misc/lightdm-base/files/README.gentoo new file mode 100644 index 00000000..182f5308 --- /dev/null +++ b/x11-misc/lightdm-base/files/README.gentoo @@ -0,0 +1,11 @@ + + * Even though the default /etc/lightdm/lightdm.conf will work for + * most users, make sure you configure it to suit your needs + * before using lightdm for the first time. + * You can test the configuration file using the following + * command: lightdm --test-mode -c /etc/lightdm/lightdm.conf. This + * requires xorg-server to be built with the 'kdrive' useflag. + * + * You can also set your own default values for LIGHTDM_GREETER, + * LIGHTDM_SESSION, and LIGHTDM_USER in /etc/portage/make.conf + diff --git a/x11-misc/lightdm-base/files/Xsession b/x11-misc/lightdm-base/files/Xsession new file mode 100644 index 00000000..5da041e6 --- /dev/null +++ b/x11-misc/lightdm-base/files/Xsession @@ -0,0 +1,69 @@ +#!/bin/sh +# +# LightDM wrapper to run around X sessions. + +echo "Running X session wrapper" + +# Load profile +for file in "/etc/profile" "$HOME/.profile" "/etc/xprofile" "$HOME/.xprofile"; do + if [ -f "$file" ]; then + echo "Loading profile from $file"; + . "$file" + fi +done + +# Load resources +for file in "/etc/X11/Xresources" "$HOME/.Xresources"; do + if [ -f "$file" ]; then + echo "Loading resource: $file" + xrdb -nocpp -merge "$file" + fi +done + +# Load keymaps +for file in "/etc/X11/Xkbmap" "$HOME/.Xkbmap"; do + if [ -f "$file" ]; then + echo "Loading keymap: $file" + setxkbmap `cat "$file"` + XKB_IN_USE=yes + fi +done + +# Load xmodmap if not using XKB +if [ -z "$XKB_IN_USE" ]; then + for file in "/etc/X11/Xmodmap" "$HOME/.Xmodmap"; do + if [ -f "$file" ]; then + echo "Loading modmap: $file" + xmodmap "$file" + fi + done +fi + +unset XKB_IN_USE + +# Run all system xinitrc shell scripts. +xinitdir="/etc/X11/xinit/xinitrc.d" +if [ -d "$xinitdir" ]; then + for script in $xinitdir/*; do + echo "Loading xinit script $script" + if [ -x "$script" -a ! -d "$script" ]; then + . "$script" + fi + done +fi + +# Load Xsession scripts +xsessionddir="/etc/X11/Xsession.d" +if [ -d "$xsessionddir" ]; then + for i in `ls $xsessionddir`; do + script="$xsessionddir/$i" + echo "Loading X session script $script" + if [ -r "$script" -a -f "$script" ] && expr "$i" : '^[[:alnum:]_-]\+$' > /dev/null; then + . "$script" + fi + done +fi + +echo "X session wrapper complete, running session $@" + +exec $@ diff --git a/x11-misc/lightdm-base/files/lightdm b/x11-misc/lightdm-base/files/lightdm new file mode 100644 index 00000000..6286d6ab --- /dev/null +++ b/x11-misc/lightdm-base/files/lightdm @@ -0,0 +1,8 @@ +#%PAM-1.0 +auth optional pam_env.so +auth include system-login +auth required pam_nologin.so +account include system-login +password include system-login +session optional pam_loginuid.so +session include system-auth diff --git a/x11-misc/lightdm-base/files/lightdm-1.7.7-session-wrapper.patch b/x11-misc/lightdm-base/files/lightdm-1.7.7-session-wrapper.patch new file mode 100644 index 00000000..40b41597 --- /dev/null +++ b/x11-misc/lightdm-base/files/lightdm-1.7.7-session-wrapper.patch @@ -0,0 +1,13 @@ +Index: lightdm-1.7.7/data/lightdm.conf +=================================================================== +--- lightdm-1.7.7.orig/data/lightdm.conf ++++ lightdm-1.7.7/data/lightdm.conf +@@ -87,7 +87,7 @@ + #user-session=default + #allow-guest=true + #guest-session=UNIMPLEMENTED +-#session-wrapper=lightdm-session ++session-wrapper=/etc/lightdm/Xsession + #greeter-wrapper= + #display-setup-script= + #greeter-setup-script= diff --git a/x11-misc/lightdm-base/files/lightdm-autologin b/x11-misc/lightdm-base/files/lightdm-autologin new file mode 100644 index 00000000..decfba34 --- /dev/null +++ b/x11-misc/lightdm-base/files/lightdm-autologin @@ -0,0 +1,6 @@ +auth optional pam_env.so +auth required pam_nologin.so +auth required pam_permit.so + +account include system-local-login +session include system-local-login diff --git a/x11-misc/lightdm-base/files/lightdm.service b/x11-misc/lightdm-base/files/lightdm.service new file mode 100644 index 00000000..7eb46ceb --- /dev/null +++ b/x11-misc/lightdm-base/files/lightdm.service @@ -0,0 +1,14 @@ +[Unit] +Description=Light Display Manager +Documentation=man:lightdm(1) +After=systemd-user-sessions.service + +[Service] +ExecStart=/usr/sbin/lightdm +StandardOutput=syslog +Restart=always +IgnoreSIGPIPE=no +BusName=org.freedesktop.DisplayManager + +[Install] +Alias=display-manager.service diff --git a/x11-misc/lightdm-base/files/session-wrapper-lightdm.patch b/x11-misc/lightdm-base/files/session-wrapper-lightdm.patch new file mode 100644 index 00000000..9f41816a --- /dev/null +++ b/x11-misc/lightdm-base/files/session-wrapper-lightdm.patch @@ -0,0 +1,13 @@ +Index: lightdm-1.0.6/data/lightdm.conf +=================================================================== +--- lightdm-1.0.6.orig/data/lightdm.conf ++++ lightdm-1.0.6/data/lightdm.conf +@@ -65,7 +65,7 @@ + #user-session=default + #allow-guest=true + #guest-session=UNIMPLEMENTED +-#session-wrapper=lightdm-session ++session-wrapper=/etc/lightdm/Xsession + #display-setup-script= + #greeter-setup-script= + #session-setup-script= |