Two more tiny patches to make LXDE run smoothly.
* sidux-irc
- add xchat for LXDE
Code:
--- a/sidux-irc
+++ b/sidux-irc
@@ -322,9 +322,9 @@
irc_check_environ()
{
use_xchat=0
- if [ "${GDMSESSION}" = "gnome" ]; then
- use_xchat=1
- elif [ "${GDMSESSION}" = "xfce4" ]; then
+ if [ "${GDMSESSION}" = "gnome" ] || \
+ [ "${GDMSESSION}" = "xfce4" ] || \
+ [ "${GDMSESSION}" = "LXDE" ]; then
use_xchat=1
fi
}
* fll-live-initscripts
- use GDM for LXDE if KDM and GDM are installed
Code:
--- a/debian/fll-live-initscripts.fll-xdm.init
+++ b/debian/fll-live-initscripts.fll-xdm.init
@@ -200,7 +200,7 @@
# based on desktop choice cheatcode
if [ -n "${KDM}" ] && [ -n "${GDM}" ]; then
case "${DESKTOP}" in
- gnome|xfce*)
+ gnome|xfce*|lxde)
echo "${GDM}" > "${DEFAULT_DISPLAY_MANAGER_FILE}"
;;
esac
|