summaryrefslogtreecommitdiffstats
path: root/.xinitrc
blob: a1b5d0862a1e21e1ada04c0ec97eefe9fe8883a5 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
run_dwm() {
  export _JAVA_AWT_WM_NONREPARENTING=1
  xrdb -merge ~/.Xresources
  xset r rate 200 50
  while [ 1 ]
  	do dwm 2> ~/.dwm.log
  done
}
run_dwm