Commit Briefs
code-style consistency (tags/6.1)
separate program-specific c99 bool and X11
True, False are X11-specific (int), make sure to use c99 stdbool for program-specific things.
setfullscreen: don't process the property twice
Some clients try to set _NET_WM_STATE_FULLSCREEN even when the window is already in fullscreen. For example, c->oldstate was set two times in a raw and window would then always be floating. We must check that it's not the case before processing it. (original patch modified with suggestion from Markus Teich <markus.teich@stusta.mhn.de>)
sync updated drw code from dmenu
important: - drw_rect: didn't use w and h, change the dwm code accordingly. - drw_text: text is NULL is not allowed, use drw_rect().
cleanup, dont use c++ style comments
- signal: print error string. - die: start message with lower-case (consistency). - bump version to 2015.
config.h: use common default font, pass Xft font name to dmenu
dmenu uses Xft now (soon to be released).
applied Hiltjo's resize/move limitation
"Limit the amount of updates when resizing or moving a window in floating mode to 60 times per second. This makes resizing and moving alot smoother and by limiting it it also uses alot less resources on my machine.
applied Julian's enum approach,
however renamed theme into scheme resp. Theme into ClrScheme
