23 lines
714 B
Bash
Executable file
23 lines
714 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-scale ~/nix/wallpapers/blue.png
|
|
|
|
dwmblocks &
|
|
dunst &
|
|
xbanish &
|
|
|
|
# xrandr --output eDP-1 --mode 1920x1080 --pos 3840x1080 --rotate normal --output DP-1 --off --output HDMI-1 --off --output DP-2 --off --output HDMI-2 --off --output DP-1-1 --off --output DP-1-2 --primary --mode 3840x2160 --pos 0x0 --rotate normal --output DP-1-3 --off
|
|
|
|
exec dwm
|