Skip to main content
Topic: windowmaker and lxdm failure (Read 868 times) previous topic - next topic
0 Members and 3 Guests are viewing this topic.

Re: windowmaker and lxdm failure

Reply #15

Code: [Select]
curl -O https://aur.archlinux.org/cgit/aur.git/snapshot/windowmaker.tar.gz

Your problem is neither the windowmaker nor the lxdm but your ~/.xinitrc.

Code: [Select]
#!/bin/bash
#
# ~/.xinitrc
#

# Dbus fix
if [ -z "$DBUS_SESSION_BUS_ADDRESS" ]; then
    eval "$(dbus-launch --sh-syntax --exit-with-session)"
fi

## Executed by startx
## Here LXDE is kept as default

session=${1:-lxde}

case $session in
    lxde               ) exec /usr/bin/startlxde;;
    openbox        ) exec /usr/bin/openbox-session;;
    wmaker         ) exec /usr/bin/wmaker;;
    fvwm3           ) exec /usr/bin/fvwm3;;
    icewm           ) exec /usr/bin/icewm;;
    icewm-session           ) exec /usr/bin/icewm-session;;
    # No known session, try to run it as command
   *                 ) exec $1;;
esac
"Wer alles kann, macht nichts richtig"

Artix USE="runit openrc slim openbox lxde gtk2 qt4 qt5 qt6 conky
-gtk3 -gtk4 -adwaita{cursors,themes,icons} -gnome3 -kde -plasma -wayland "