#!/bin/sh

if [ -f "${XDG_CONFIG_HOME:-$HOME/.config}/X11/xprofile" ]; then
    source "${XDG_CONFIG_HOME:-$HOME/.config}/X11/xprofile"
else
    source "$HOME/.xprofile"
fi

while true; do
    dwm
done