summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@ubuntu.com>2017-09-19 01:08:42 -0400
committerLibravatarUnit 193 <unit193@ubuntu.com>2017-09-19 01:08:42 -0400
commitfeb25abaa8c650e3207091b24becedd571f319bb (patch)
tree2fa60dc3ea7a1558e22369f012328b2ad9d19363
parent3de600fcbcac2a5ee35ec29655d847b92a8461bb (diff)
downloadxebian-lb-config-feb25abaa8c650e3207091b24becedd571f319bb.tar.bz2
xebian-lb-config-feb25abaa8c650e3207091b24becedd571f319bb.tar.xz
xebian-lb-config-feb25abaa8c650e3207091b24becedd571f319bb.tar.zst
Remove 60x11-common_xdg_path, this is in x11-xdg-session now.
-rw-r--r--config/includes.chroot/etc/X11/Xsession.d/60x11-common_xdg_path21
1 files changed, 0 insertions, 21 deletions
diff --git a/config/includes.chroot/etc/X11/Xsession.d/60x11-common_xdg_path b/config/includes.chroot/etc/X11/Xsession.d/60x11-common_xdg_path
deleted file mode 100644
index 3494d80..0000000
--- a/config/includes.chroot/etc/X11/Xsession.d/60x11-common_xdg_path
+++ /dev/null
@@ -1,21 +0,0 @@
-# This file is sourced by Xsession(5), not executed.
-# Add additionnal xdg paths depending on selected desktop session
-
-DEFAULT_XDG_CONFIG_DIRS='/etc/xdg'
-DEFAULT_XDG_DATA_DIRS='/usr/local/share/:/usr/share/'
-if [ -n "$DESKTOP_SESSION" ]; then
- # readd default if was empty
- if [ -z "$XDG_CONFIG_DIRS" ]; then
- XDG_CONFIG_DIRS="$DEFAULT_XDG_CONFIG_DIRS"
- fi
- XDG_CONFIG_DIRS="$DEFAULT_XDG_CONFIG_DIRS"/xdg-"$DESKTOP_SESSION":"$XDG_CONFIG_DIRS"
- export XDG_CONFIG_DIRS
- # gnome is already added if gnome-session installed
- if [ "$DESKTOP_SESSION" != "gnome" ]; then
- if [ -z "$XDG_DATA_DIRS" ]; then
- XDG_DATA_DIRS="$DEFAULT_XDG_DATA_DIRS"
- fi
- XDG_DATA_DIRS=/usr/share/"$DESKTOP_SESSION":"$XDG_DATA_DIRS"
- export XDG_DATA_DIRS
- fi
-fi