commit 8cca0e74df39393fc073f08a57b029438c367a50
parent adc911c49842d1a8c03e366d8ea24e97d94410ab
Author: Raymond Cole <rc@wolog.xyz>
Date: Tue, 5 Nov 2024 02:54:32 +0000
Reword license notice
Diffstat:
14 files changed, 42 insertions(+), 98 deletions(-)
diff --git a/bar.c b/bar.c
@@ -1,13 +1,9 @@
/*
* Copyright (C) Raymond Cole <rc@wolog.xyz>
+ * License: GPL-3.0-or-later
*
- * Licensed under the GNU General Public License; either version 3 of
- * the License, or (at your option) any later version. See the LICENSE
- * file for details.
- *
- * Portions of the code originally belong to dwm as developed by Anselm
- * R. Garbe et al. See LICENSE-dwm for the copyright and license details
- * of those portions.
+ * Portions of the code are derived from suckless dwm. See file
+ * LICENSE-dwm for copyright and license details of those portions.
*/
#include <fcntl.h>
#include <errno.h>
diff --git a/client.c b/client.c
@@ -1,13 +1,9 @@
/*
* Copyright (C) Raymond Cole <rc@wolog.xyz>
+ * License: GPL-3.0-or-later
*
- * Licensed under the GNU General Public License; either version 3 of
- * the License, or (at your option) any later version. See the LICENSE
- * file for details.
- *
- * Portions of the code originally belong to dwm as developed by Anselm
- * R. Garbe et al. See LICENSE-dwm for the copyright and license details
- * of those portions.
+ * Portions of the code are derived from suckless dwm. See file
+ * LICENSE-dwm for copyright and license details of those portions.
*/
#include <stdlib.h>
#include <string.h>
diff --git a/config.c b/config.c
@@ -1,13 +1,9 @@
/*
* Copyright (C) Raymond Cole <rc@wolog.xyz>
+ * License: GPL-3.0-or-later
*
- * Licensed under the GNU General Public License; either version 3 of
- * the License, or (at your option) any later version. See the LICENSE
- * file for details.
- *
- * Portions of the code originally belong to dwm as developed by Anselm
- * R. Garbe et al. See LICENSE-dwm for the copyright and license details
- * of those portions.
+ * Portions of the code are derived from suckless dwm. See file
+ * LICENSE-dwm for copyright and license details of those portions.
*/
#include <stdio.h>
#include <stdlib.h>
diff --git a/config.h b/config.h
@@ -1,13 +1,9 @@
/*
* Copyright (C) Raymond Cole <rc@wolog.xyz>
+ * License: GPL-3.0-or-later
*
- * Licensed under the GNU General Public License; either version 3 of
- * the License, or (at your option) any later version. See the LICENSE
- * file for details.
- *
- * Portions of the code originally belong to dwm as developed by Anselm
- * R. Garbe et al. See LICENSE-dwm for the copyright and license details
- * of those portions.
+ * Portions of the code are derived from suckless dwm. See file
+ * LICENSE-dwm for copyright and license details of those portions.
*/
#define MODMASK Mod4Mask
diff --git a/drw.c b/drw.c
@@ -1,13 +1,9 @@
/*
* Copyright (C) Raymond Cole <rc@wolog.xyz>
+ * License: GPL-3.0-or-later
*
- * Licensed under the GNU General Public License; either version 3 of
- * the License, or (at your option) any later version. See the LICENSE
- * file for details.
- *
- * Portions of the code originally belong to dwm as developed by Anselm
- * R. Garbe et al. See LICENSE-dwm for the copyright and license details
- * of those portions.
+ * Portions of the code are derived from suckless dwm. See file
+ * LICENSE-dwm for copyright and license details of those portions.
*/
#include <stdio.h>
#include <stdlib.h>
diff --git a/drw.h b/drw.h
@@ -1,13 +1,9 @@
/*
* Copyright (C) Raymond Cole <rc@wolog.xyz>
+ * License: GPL-3.0-or-later
*
- * Licensed under the GNU General Public License; either version 3 of
- * the License, or (at your option) any later version. See the LICENSE
- * file for details.
- *
- * Portions of the code originally belong to dwm as developed by Anselm
- * R. Garbe et al. See LICENSE-dwm for the copyright and license details
- * of those portions.
+ * Portions of the code are derived from suckless dwm. See file
+ * LICENSE-dwm for copyright and license details of those portions.
*/
typedef struct Fnt {
diff --git a/evt.c b/evt.c
@@ -1,13 +1,9 @@
/*
* Copyright (C) Raymond Cole <rc@wolog.xyz>
+ * License: GPL-3.0-or-later
*
- * Licensed under the GNU General Public License; either version 3 of
- * the License, or (at your option) any later version. See the LICENSE
- * file for details.
- *
- * Portions of the code originally belong to dwm as developed by Anselm
- * R. Garbe et al. See LICENSE-dwm for the copyright and license details
- * of those portions.
+ * Portions of the code are derived from suckless dwm. See file
+ * LICENSE-dwm for copyright and license details of those portions.
*/
#include <X11/Xatom.h>
#include <X11/Xlib.h>
diff --git a/lyt.c b/lyt.c
@@ -1,13 +1,9 @@
/*
* Copyright (C) Raymond Cole <rc@wolog.xyz>
+ * License: GPL-3.0-or-later
*
- * Licensed under the GNU General Public License; either version 3 of
- * the License, or (at your option) any later version. See the LICENSE
- * file for details.
- *
- * Portions of the code originally belong to dwm as developed by Anselm
- * R. Garbe et al. See LICENSE-dwm for the copyright and license details
- * of those portions.
+ * Portions of the code are derived from suckless dwm. See file
+ * LICENSE-dwm for copyright and license details of those portions.
*/
#include <errno.h>
#include <stdio.h>
diff --git a/main.c b/main.c
@@ -1,13 +1,9 @@
/*
* Copyright (C) Raymond Cole <rc@wolog.xyz>
+ * License: GPL-3.0-or-later
*
- * Licensed under the GNU General Public License; either version 3 of
- * the License, or (at your option) any later version. See the LICENSE
- * file for details.
- *
- * Portions of the code originally belong to dwm as developed by Anselm
- * R. Garbe et al. See LICENSE-dwm for the copyright and license details
- * of those portions.
+ * Portions of the code are derived from suckless dwm. See file
+ * LICENSE-dwm for copyright and license details of those portions.
*/
#include <errno.h>
#include <locale.h>
diff --git a/misc.c b/misc.c
@@ -1,13 +1,9 @@
/*
* Copyright (C) Raymond Cole <rc@wolog.xyz>
+ * License: GPL-3.0-or-later
*
- * Licensed under the GNU General Public License; either version 3 of
- * the License, or (at your option) any later version. See the LICENSE
- * file for details.
- *
- * Portions of the code originally belong to dwm as developed by Anselm
- * R. Garbe et al. See LICENSE-dwm for the copyright and license details
- * of those portions.
+ * Portions of the code are derived from suckless dwm. See file
+ * LICENSE-dwm for copyright and license details of those portions.
*/
#include <stdarg.h>
#include <signal.h>
diff --git a/monitor.c b/monitor.c
@@ -1,13 +1,9 @@
/*
* Copyright (C) Raymond Cole <rc@wolog.xyz>
+ * License: GPL-3.0-or-later
*
- * Licensed under the GNU General Public License; either version 3 of
- * the License, or (at your option) any later version. See the LICENSE
- * file for details.
- *
- * Portions of the code originally belong to dwm as developed by Anselm
- * R. Garbe et al. See LICENSE-dwm for the copyright and license details
- * of those portions.
+ * Portions of the code are derived from suckless dwm. See file
+ * LICENSE-dwm for copyright and license details of those portions.
*/
#include <stdlib.h>
#include <X11/Xlib.h>
diff --git a/swm.h b/swm.h
@@ -1,13 +1,9 @@
/*
* Copyright (C) Raymond Cole <rc@wolog.xyz>
+ * License: GPL-3.0-or-later
*
- * Licensed under the GNU General Public License; either version 3 of
- * the License, or (at your option) any later version. See the LICENSE
- * file for details.
- *
- * Portions of the code originally belong to dwm as developed by Anselm
- * R. Garbe et al. See LICENSE-dwm for the copyright and license details
- * of those portions.
+ * Portions of the code are derived from suckless dwm. See file
+ * LICENSE-dwm for copyright and license details of those portions.
*/
#include "config.h"
diff --git a/util.c b/util.c
@@ -1,13 +1,9 @@
/*
* Copyright (C) Raymond Cole <rc@wolog.xyz>
+ * License: GPL-3.0-or-later
*
- * Licensed under the GNU General Public License; either version 3 of
- * the License, or (at your option) any later version. See the LICENSE
- * file for details.
- *
- * Portions of the code originally belong to dwm as developed by Anselm
- * R. Garbe et al. See LICENSE-dwm for the copyright and license details
- * of those portions.
+ * Portions of the code are derived from suckless dwm. See file
+ * LICENSE-dwm for copyright and license details of those portions.
*/
#include <errno.h>
#include <stdarg.h>
diff --git a/util.h b/util.h
@@ -1,13 +1,9 @@
/*
* Copyright (C) Raymond Cole <rc@wolog.xyz>
+ * License: GPL-3.0-or-later
*
- * Licensed under the GNU General Public License; either version 3 of
- * the License, or (at your option) any later version. See the LICENSE
- * file for details.
- *
- * Portions of the code originally belong to dwm as developed by Anselm
- * R. Garbe et al. See LICENSE-dwm for the copyright and license details
- * of those portions.
+ * Portions of the code are derived from suckless dwm. See file
+ * LICENSE-dwm for copyright and license details of those portions.
*/
#define MAX(A, B) ((A) > (B) ? (A) : (B))