# HG changeset patch # User Anselm R Garbe # Date 1203693987 0 # Node ID 5b4e2e1aba8507530c8a3336f3721b60c444a6c8 # Parent 25eea166210dd57fbb713da3cdf1e275583baf56 added Gottox to Copyright holders after all his contributions, applied his last patch diff -r 25eea166210d -r 5b4e2e1aba85 LICENSE --- a/LICENSE Fri Feb 22 10:34:12 2008 +0000 +++ b/LICENSE Fri Feb 22 15:26:27 2008 +0000 @@ -1,11 +1,12 @@ MIT/X Consortium License -© 2006-2008 Anselm R. Garbe +© 2006-2008 Anselm R Garbe © 2006-2007 Sander van Dijk © 2006-2007 Jukka Salmi © 2007 Premysl Hruby © 2007 Szabolcs Nagy -© 2007 Christof Musik +© 2007 Christof Musik +© 2008 Enno Gottox Boland Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff -r 25eea166210d -r 5b4e2e1aba85 dwm.c --- a/dwm.c Fri Feb 22 10:34:12 2008 +0000 +++ b/dwm.c Fri Feb 22 15:26:27 2008 +0000 @@ -118,7 +118,6 @@ } Regs; struct Monitor { - unsigned int id; int sx, sy, sw, sh, wax, way, wah, waw; double mwfact; Bool *seltags; @@ -1603,7 +1602,6 @@ for(i = 0; i < mcount; i++) { /* init geometry */ m = &monitors[i]; - m->id = i; if(mcount != 1 && isxinerama) { m->sx = info[i].x_org; @@ -2064,8 +2062,7 @@ int main(int argc, char *argv[]) { if(argc == 2 && !strcmp("-v", argv[1])) - eprint("dwm-"VERSION", © 2006-2008 Anselm R. Garbe, Sander van Dijk, " - "Jukka Salmi, Premysl Hruby, Szabolcs Nagy, Christof Musik\n"); + eprint("dwm-"VERSION", © 2006-2008 dwm engineers, see LICENSE for details\n"); else if(argc != 1) eprint("usage: dwm [-v]\n");