summaryrefslogtreecommitdiff
path: root/system/gdm/doinst.sh
diff options
context:
space:
mode:
authorRobby Workman <rworkman@slackbuilds.org>2016-01-03 18:58:26 -0600
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2016-01-17 09:40:16 +0700
commitb1350ddf30629bb5a87b6ba9ca16de6d504725af (patch)
tree56229b78be98058f4ab4960c0781b96d94a9581f /system/gdm/doinst.sh
parent3d937eb43dcd20ce24c951307eadb74c3a38d809 (diff)
downloadslackbuilds-b1350ddf30629bb5a87b6ba9ca16de6d504725af.tar.gz
system/gdm: Removed (not functional with CK2)
I looked around in the gdm code and don't see anything obvious that would make it not work with CK2, and google turned up nothing useful. I did notice that PCLinuxOS is using gdm-2.20.11 as well, but aside from a special dbus config file (which I tried here with no change to behavior), I don't see anything special that they do. They use PAM though, so maybe that makes a difference. These days, I don't even use gdm any more - I'm on xdm with alienBOB's config (slightly modified) from his livecd work. The only things that users might miss are a session chooser (change $HOME.xinitrc instead) and switching users (I don't like that anyway), so good riddance to this one. Signed-off-by: Robby Workman <rworkman@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/gdm/doinst.sh')
-rw-r--r--system/gdm/doinst.sh35
1 files changed, 0 insertions, 35 deletions
diff --git a/system/gdm/doinst.sh b/system/gdm/doinst.sh
deleted file mode 100644
index 0ffbca54b1..0000000000
--- a/system/gdm/doinst.sh
+++ /dev/null
@@ -1,35 +0,0 @@
-config() {
- NEW="$1"
- OLD="$(dirname $NEW)/$(basename $NEW .new)"
- # If there's no config file by that name, mv it over:
- if [ ! -r $OLD ]; then
- mv $NEW $OLD
- elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
- # toss the redundant copy
- rm $NEW
- fi
- # Otherwise, we leave the .new copy for the admin to consider...
-}
-
-config etc/gdm/Xsession.new
-config etc/gdm/Init/Default.new
-config etc/gdm/PreSession/Default.new
-config etc/gdm/PostSession/Default.new
-config etc/gdm/XKeepsCrashing.new
-config etc/gdm/custom.conf.new
-config etc/gdm/locale.alias.new
-config etc/gdm/modules/factory-AccessDwellMouseEvents.new
-config etc/gdm/modules/AccessDwellMouseEvents.new
-config etc/gdm/modules/factory-AccessKeyMouseEvents.new
-config etc/gdm/modules/AccessKeyMouseEvents.new
-
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
-fi
-
-if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
- if [ -x /usr/bin/gtk-update-icon-cache ]; then
- /usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1
- fi
-fi
-