When the config files moved from /etc/xdg/lxqt to /usr/share/lxqt
/usr/bin/startlxqt should have had

if [ -z "$XDG_CONFIG_DIRS" ]; then
    export XDG_CONFIG_DIRS="/etc:/etc/xdg:/usr/share"
else
    if ! contains "$XDG_CONFIG_DIRS" '/etc/xdg'; then
        XDG_CONFIG_DIRS="$XDG_CONFIG_DIRS:/etc/xdg"
    fi
fi


modified to

if [ -z "$XDG_CONFIG_DIRS" ]; then
    export XDG_CONFIG_DIRS="/etc:/etc/xdg:/usr/share"
else
    if ! contains "$XDG_CONFIG_DIRS" '/etc/xdg'; then
        XDG_CONFIG_DIRS="$XDG_CONFIG_DIRS:/etc/xdg"
    fi
    if ! contains "$XDG_CONFIG_DIRS" '/usr/share'; then
        XDG_CONFIG_DIRS="$XDG_CONFIG_DIRS:/usr/share"
    fi
fi

*OR* placed the files in /etc/xdg/lxqt like lxqt-globalkeys does

*OR* provided a convenience symlink compatible with x11-common's 
60x11-common_xdg_path of
/etc/xdg/xdg-lxqt/lxqt -> /usr/share/lxqt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1781392

Title:
  sddm will not start lxqt desktop correctly

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxqt-session/+bug/1781392/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to