21 lines
449 B
Bash
Executable file
21 lines
449 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
if test -z "$DBUS_SESSION_BUS_ADDRESS"; then
|
|
eval $(dbus-launch --exit-with-session --sh-syntax)
|
|
fi
|
|
systemctl --user import-environment DISPLAY XAUTHORITY
|
|
|
|
if command -v dbus-update-activation-environment >/dev/null 2>&1; then
|
|
dbus-update-activation-environment DISPLAY XAUTHORITY
|
|
fi
|
|
|
|
xrdb -merge ~/.Xresources
|
|
setxkbmap -option caps:swapescape
|
|
|
|
feh --bg-center ~/nix/wallpapers/peach-cat.png
|
|
|
|
dwmblocks &
|
|
dunst &
|
|
xbanish &
|
|
|
|
exec dwm
|