aboutsummaryrefslogtreecommitdiff
path: root/.local/bin/xstart_dwm
blob: a1a0d1afc907e11434572a50e5a65d5aa59902de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

dunst &
status -d &

while true; do
	. ~/.profile
	# Log stderror to a file 
	dwm 2> ~/.cache/dwm.log
	# No error logging
	#dwm >/dev/null 2>&1
done