Re: windowmaker and lxdm failure
Reply #15 –
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.
#!/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