1
0
Fork 0
dotfiles/.config/X11/xinitrc

18 lines
292 B
Bash
Executable file

#!/bin/sh
# shellcheck disable=SC2016
exec dbus-run-session -- sh -c '
X11_CONFIG="$XDG_CONFIG_HOME/X11"
echo "Sourcing $X11_CONFIG/xprofile"
. "$X11_CONFIG/xprofile"
echo $DBUS_SESSION_BUS_ADDRESS > $XDG_STATE_HOME/dbus_session_bus_address
echo "Starting DWM"
dwm
echo "Exited DWM"
'