manager/scripts/startdwm
Dan Anglin 7aa9304734
feat: add custom startdwm script to allow restarts
Modified script from the Archwiki which runs DWM in a loop so that we
can restart the window manager we make changes to the binary.
2022-05-22 12:45:44 +01:00

10 lines
142 B
Bash

#!/usr/bin/env bash
set -euo pipefail
logfile="${LOG_HOME}/dwm.log"
while true; do
# Log stderror to a file
dwm 2> "$logfile"
done