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

dunst &
status -d &
kodi &

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