fixing some minor issues, next week is dwm-5.9 release time d384cee7
garbeam@gmail.com · 2011-06-11 08:33 3 file(s) · +4 −4
LICENSE +2 −2
1 1
MIT/X Consortium License
2 2
3 -
© 2006-2010 Anselm R Garbe <anselm@garbe.us>
3 +
© 2006-2011 Anselm R Garbe <anselm@garbe.us>
4 4
© 2006-2007 Sander van Dijk <a dot h dot vandijk at gmail dot com>
5 5
© 2006-2009 Jukka Salmi <jukka at salmi dot ch>
6 6
© 2007-2009 Premysl Hruby <dfenze at gmail dot com>
10 10
© 2007-2008 Peter Hartlich <sgkkr at hartlich dot com>
11 11
© 2008 Martin Hurton <martin dot hurton at gmail dot com>
12 12
© 2008 Neale Pickett <neale dot woozle dot org>
13 -
© 2009 Mate Nagy <mnagy@port70.net>
13 +
© 2009 Mate Nagy <mnagy at port70 dot net>
14 14
15 15
Permission is hereby granted, free of charge, to any person obtaining a
16 16
copy of this software and associated documentation files (the "Software"),
README +1 −1
38 38
In order to display status info in the bar, you can do something
39 39
like this in your .xinitrc:
40 40
41 -
    while xsetroot -name "`date` `uptime | sed 's/.*,//'`"
41 +
    while xsetroot -name "`date` `uptime | sed 's/.*,//'`
42 42
    do
43 43
    	sleep 20
44 44
    done &
dwm.c +1 −1
2046 2046
int
2047 2047
main(int argc, char *argv[]) {
2048 2048
	if(argc == 2 && !strcmp("-v", argv[1]))
2049 -
		die("dwm-"VERSION", © 2006-2010 dwm engineers, see LICENSE for details\n");
2049 +
		die("dwm-"VERSION", © 2006-2011 dwm engineers, see LICENSE for details\n");
2050 2050
	else if(argc != 1)
2051 2051
		die("usage: dwm [-v]\n");
2052 2052
	if(!setlocale(LC_CTYPE, "") || !XSupportsLocale())