swm

sigma window manager
git clone git://wolog.xyz/swm
Log | Files | Refs | README | LICENSE

commit 39f6c4e136a90919e47d78bdbfe8fc9b4793bdc1
parent a0e445f5ea171c3bf26e42e3445bd4edc213d875
Author: Raymond Cole <rc@wolog.xyz>
Date:   Fri, 25 Oct 2024 12:41:44 +0000

Include dwm's LICENSE

Diffstat:
ALICENSE-dwm | 38++++++++++++++++++++++++++++++++++++++
Mbar.c | 4++--
Mclient.c | 4++--
Mconfig.c | 4++--
Mconfig.h | 4++--
Mdrw.c | 4++--
Mdrw.h | 4++--
Mevt.c | 4++--
Mlyt.c | 4++--
Mmain.c | 4++--
Mmisc.c | 4++--
Mmonitor.c | 4++--
Mswm.h | 4++--
Mutil.c | 4++--
Mutil.h | 4++--
15 files changed, 66 insertions(+), 28 deletions(-)

diff --git a/LICENSE-dwm b/LICENSE-dwm @@ -0,0 +1,38 @@ +MIT/X Consortium License + +© 2006-2019 Anselm R Garbe <anselm@garbe.ca> +© 2006-2009 Jukka Salmi <jukka at salmi dot ch> +© 2006-2007 Sander van Dijk <a dot h dot vandijk at gmail dot com> +© 2007-2011 Peter Hartlich <sgkkr at hartlich dot com> +© 2007-2009 Szabolcs Nagy <nszabolcs at gmail dot com> +© 2007-2009 Christof Musik <christof at sendfax dot de> +© 2007-2009 Premysl Hruby <dfenze at gmail dot com> +© 2007-2008 Enno Gottox Boland <gottox at s01 dot de> +© 2008 Martin Hurton <martin dot hurton at gmail dot com> +© 2008 Neale Pickett <neale dot woozle dot org> +© 2009 Mate Nagy <mnagy at port70 dot net> +© 2010-2016 Hiltjo Posthuma <hiltjo@codemadness.org> +© 2010-2012 Connor Lane Smith <cls@lubutu.com> +© 2011 Christoph Lohmann <20h@r-36.net> +© 2015-2016 Quentin Rameau <quinq@fifth.space> +© 2015-2016 Eric Pruitt <eric.pruitt@gmail.com> +© 2016-2017 Markus Teich <markus.teich@stusta.mhn.de> +© 2020-2022 Chris Down <chris@chrisdown.name> + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. diff --git a/bar.c b/bar.c @@ -6,8 +6,8 @@ * file for details. * * Portions of the code originally belong to dwm as developed by Anselm - * R. Garbe et al. See <https://git.suckless.org/dwm/plain/LICENSE> - * for the copyright and license details of those portions. + * R. Garbe et al. See LICENSE-dwm for the copyright and license details + * of those portions. */ #include <fcntl.h> #include <errno.h> diff --git a/client.c b/client.c @@ -6,8 +6,8 @@ * file for details. * * Portions of the code originally belong to dwm as developed by Anselm - * R. Garbe et al. See <https://git.suckless.org/dwm/plain/LICENSE> - * for the copyright and license details of those portions. + * R. Garbe et al. See LICENSE-dwm for the copyright and license details + * of those portions. */ #include <stdlib.h> #include <string.h> diff --git a/config.c b/config.c @@ -6,8 +6,8 @@ * file for details. * * Portions of the code originally belong to dwm as developed by Anselm - * R. Garbe et al. See <https://git.suckless.org/dwm/plain/LICENSE> - * for the copyright and license details of those portions. + * R. Garbe et al. See LICENSE-dwm for the copyright and license details + * of those portions. */ #include <stdio.h> #include <stdlib.h> diff --git a/config.h b/config.h @@ -6,8 +6,8 @@ * file for details. * * Portions of the code originally belong to dwm as developed by Anselm - * R. Garbe et al. See <https://git.suckless.org/dwm/plain/LICENSE> - * for the copyright and license details of those portions. + * R. Garbe et al. See LICENSE-dwm for the copyright and license details + * of those portions. */ #define MODMASK Mod4Mask diff --git a/drw.c b/drw.c @@ -6,8 +6,8 @@ * file for details. * * Portions of the code originally belong to dwm as developed by Anselm - * R. Garbe et al. See <https://git.suckless.org/dwm/plain/LICENSE> - * for the copyright and license details of those portions. + * R. Garbe et al. See LICENSE-dwm for the copyright and license details + * of those portions. */ #include <stdio.h> #include <stdlib.h> diff --git a/drw.h b/drw.h @@ -6,8 +6,8 @@ * file for details. * * Portions of the code originally belong to dwm as developed by Anselm - * R. Garbe et al. See <https://git.suckless.org/dwm/plain/LICENSE> - * for the copyright and license details of those portions. + * R. Garbe et al. See LICENSE-dwm for the copyright and license details + * of those portions. */ typedef struct Fnt { diff --git a/evt.c b/evt.c @@ -6,8 +6,8 @@ * file for details. * * Portions of the code originally belong to dwm as developed by Anselm - * R. Garbe et al. See <https://git.suckless.org/dwm/plain/LICENSE> - * for the copyright and license details of those portions. + * R. Garbe et al. See LICENSE-dwm for the copyright and license details + * of those portions. */ #include <X11/Xatom.h> #include <X11/Xlib.h> diff --git a/lyt.c b/lyt.c @@ -6,8 +6,8 @@ * file for details. * * Portions of the code originally belong to dwm as developed by Anselm - * R. Garbe et al. See <https://git.suckless.org/dwm/plain/LICENSE> - * for the copyright and license details of those portions. + * R. Garbe et al. See LICENSE-dwm for the copyright and license details + * of those portions. */ #include <errno.h> #include <stdio.h> diff --git a/main.c b/main.c @@ -6,8 +6,8 @@ * file for details. * * Portions of the code originally belong to dwm as developed by Anselm - * R. Garbe et al. See <https://git.suckless.org/dwm/plain/LICENSE> - * for the copyright and license details of those portions. + * R. Garbe et al. See LICENSE-dwm for the copyright and license details + * of those portions. */ #include <errno.h> #include <locale.h> diff --git a/misc.c b/misc.c @@ -6,8 +6,8 @@ * file for details. * * Portions of the code originally belong to dwm as developed by Anselm - * R. Garbe et al. See <https://git.suckless.org/dwm/plain/LICENSE> - * for the copyright and license details of those portions. + * R. Garbe et al. See LICENSE-dwm for the copyright and license details + * of those portions. */ #include <stdarg.h> #include <signal.h> diff --git a/monitor.c b/monitor.c @@ -6,8 +6,8 @@ * file for details. * * Portions of the code originally belong to dwm as developed by Anselm - * R. Garbe et al. See <https://git.suckless.org/dwm/plain/LICENSE> - * for the copyright and license details of those portions. + * R. Garbe et al. See LICENSE-dwm for the copyright and license details + * of those portions. */ #include <stdlib.h> #include <X11/Xlib.h> diff --git a/swm.h b/swm.h @@ -6,8 +6,8 @@ * file for details. * * Portions of the code originally belong to dwm as developed by Anselm - * R. Garbe et al. See <https://git.suckless.org/dwm/plain/LICENSE> - * for the copyright and license details of those portions. + * R. Garbe et al. See LICENSE-dwm for the copyright and license details + * of those portions. */ #include "config.h" diff --git a/util.c b/util.c @@ -6,8 +6,8 @@ * file for details. * * Portions of the code originally belong to dwm as developed by Anselm - * R. Garbe et al. See <https://git.suckless.org/dwm/plain/LICENSE> - * for the copyright and license details of those portions. + * R. Garbe et al. See LICENSE-dwm for the copyright and license details + * of those portions. */ #include <errno.h> #include <stdarg.h> diff --git a/util.h b/util.h @@ -6,8 +6,8 @@ * file for details. * * Portions of the code originally belong to dwm as developed by Anselm - * R. Garbe et al. See <https://git.suckless.org/dwm/plain/LICENSE> - * for the copyright and license details of those portions. + * R. Garbe et al. See LICENSE-dwm for the copyright and license details + * of those portions. */ #define MAX(A, B) ((A) > (B) ? (A) : (B))