no need for this, we can point to the license file instead.

This commit is contained in:
speedie 2022-11-30 17:34:11 +01:00
parent af5e55fb3b
commit c533335f69

View file

@ -1,14 +1,15 @@
/* status.h
*
* This header is for configuring the status bar (based on dwmblocks).
* This header is for configuring the status bar.
* It is technically a separate program, but it is compiled and installed alongside speedwm.
*
* This separate program (status.c, status.h) is licensed under the GNU General Public License version 2.0.
* This separate program (status.c, status.h) based on dwmblocks is licensed under the GNU General Public License version 2.0. See license file for more information.
*
* Prefix: Text that will be printed before each module. This can be Pango/status2d/clickstatus markup or a unicode/ASCII character.
* Command: Command that will run. The output of this command will be printed for that module.
* Update interval: How often the module will be updated in seconds.
* Update signal: What signal reloads the module with force. (using the kill command)
*
*/
static const Module modules[] = {
@ -29,20 +30,3 @@ static const Module modules[] = {
static char leftpadding[] = ""; /* Padding on the left side of the status text */
static char rightpadding[] = ""; /* Padding on the right side of the status text */
static char *separator = ""; /* Delimiter between modules. Note that this will be applied even if a command is empty. */
/* License:
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/