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

16 lines
382 B
Plaintext
Raw Normal View History

2023-05-24 16:53:44 +02:00
#!/bin/sh
2023-12-15 10:16:45 +01:00
# shellcheck disable=SC2016
2023-12-14 17:14:43 +01:00
2024-02-04 15:21:51 +01:00
[ -x "$XDG_CONFIG_HOME/X11/xrandr" ] && "$XDG_CONFIG_HOME/X11/xrandr"
2024-02-06 10:42:53 +01:00
[ -r "$XDG_CONFIG_HOME/X11/xresources" ] && xrdb "$XDG_CONFIG_HOME/X11/xresources"
2024-02-04 15:21:51 +01:00
2023-12-15 10:16:45 +01:00
exec dbus-run-session -- sh -c '
X11_CONFIG="$XDG_CONFIG_HOME/X11"
2023-12-14 17:14:43 +01:00
2023-12-15 10:16:45 +01:00
. "$X11_CONFIG/xprofile"
2023-12-14 17:14:43 +01:00
2024-07-11 11:14:19 +02:00
echo "DBUS_SESSION_BUS_ADDRESS=\"$DBUS_SESSION_BUS_ADDRESS\"" >"${XDG_STATE_HOME}/dbus"
2023-12-14 17:14:43 +01:00
dwm
2023-12-15 10:16:45 +01:00
'