22 lines
516 B
Bash
22 lines
516 B
Bash
#
|
|
# ~/.xinitrc
|
|
#
|
|
|
|
xrandr --output DP-2 --auto --mode 1920x1080 --rate 144.00
|
|
xrandr --output HDMI-0 --auto --mode 1920x1080 --rate 100.00 --right-of DP-2
|
|
|
|
xrdb -load ~/.Xresources
|
|
xmodmap ~/.Xmodmap
|
|
|
|
# feh --no-feh --bg-fill /home/caleb/pictures/wallpapers/85942af486eb79118467/low-poly-texture-19.png
|
|
|
|
dunst &
|
|
xcompmgr -n &
|
|
dwmbar_loop &
|
|
|
|
if command -v dbus-update-activation-environment >/dev/null 2>&1; then
|
|
dbus-update-activation-environment --systemd DISPLAY XAUTHORITY XDG_CURRENT_DESKTOP=dwm
|
|
fi
|
|
|
|
exec dwm
|