You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
304 B

#!/bin/sh
while true; do
# Chose version to use dynamically
case "$(cat ~/.dwm-exec)" in
dwm)
dwm=/usr/bin/dwm
;;
dwm-dev)
dwm=~/suckless/dwm
;;
esac
$dwm 2> ~/.dwm.log
# No error logging
#$dwm >/dev/null 2>&1
done