Wiktor Zykubek cf743adcfc Add startdwm script
This script is to restart dwm without killing X.
2020-05-26 20:10:14 +02:00

11 lines
185 B
Bash
Executable File

#!/bin/sh
# Start dwm in a loop for restarting without killing X.
while true; do
# Log stderror to a file
dwm 2> ~/.cache/dwm.log
# No error logging
#dwm >/dev/null 2>&1
done