summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsabetts <sabetts>2000-08-26 06:03:41 +0000
committersabetts <sabetts>2000-08-26 06:03:41 +0000
commit0091294093e1703832394a1d5659bb6508a0bc98 (patch)
tree6f825c334d8f7013320c2a2b99a2ad95b7678cfd
parent5c3a8337c4e18f1c2209b76cfac8de242b2ada75 (diff)
downloadratpoison-0091294093e1703832394a1d5659bb6508a0bc98.zip
added copyright notice.
-rw-r--r--bar.c19
-rw-r--r--bar.h19
-rw-r--r--conf.h19
-rw-r--r--data.h19
-rw-r--r--events.c17
-rw-r--r--events.h19
-rw-r--r--list.c19
-rw-r--r--list.h19
-rw-r--r--main.c18
-rw-r--r--manage.c19
-rw-r--r--manage.h19
-rw-r--r--ratpoison.h19
12 files changed, 215 insertions, 10 deletions
diff --git a/bar.c b/bar.c
index 91c67ad..6554f9a 100644
--- a/bar.c
+++ b/bar.c
@@ -1,5 +1,22 @@
/* Functionality for a bar across the bottom of the screen listing the
- windows currently managed. */
+ * windows currently managed.
+ *
+ * Copyright (C) 2000 Shawn Betts
+ *
+ * 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, 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 software; see the file COPYING. If not, write to
+ * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
+ * Boston, MA 02111-1307 USA */
#include <X11/X.h>
#include <X11/Xlib.h>
diff --git a/bar.h b/bar.h
index 4509b0f..e6e0acd 100644
--- a/bar.h
+++ b/bar.h
@@ -1,4 +1,21 @@
-/* functions for managing the program bar */
+/* functions for managing the program bar
+ *
+ * Copyright (C) 2000 Shawn Betts
+ *
+ * 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, 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 software; see the file COPYING. If not, write to
+ * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
+ * Boston, MA 02111-1307 USA */
#ifndef _BAR_H
#define _BAR_H
diff --git a/conf.h b/conf.h
index b12953f..8976e68 100644
--- a/conf.h
+++ b/conf.h
@@ -1,4 +1,21 @@
-/* Config file for ratpoison. Edit these values and recompile. */
+/* Config file for ratpoison. Edit these values and recompile.
+ *
+ * Copyright (C) 2000 Shawn Betts
+ *
+ * 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, 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 software; see the file COPYING. If not, write to
+ * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
+ * Boston, MA 02111-1307 USA */
#define KEY_PREFIX 't'
#define MODIFIER_PREFIX ControlMask
diff --git a/data.h b/data.h
index 05cbbb2..18fc6c8 100644
--- a/data.h
+++ b/data.h
@@ -1,4 +1,21 @@
-/* our datatypes and global variables */
+/* our datatypes and global variables
+ *
+ * Copyright (C) 2000 Shawn Betts
+ *
+ * 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, 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 software; see the file COPYING. If not, write to
+ * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
+ * Boston, MA 02111-1307 USA */
#ifndef _DATA_H
#define _DATA_H
diff --git a/events.c b/events.c
index 9383c1c..1d2d8f5 100644
--- a/events.c
+++ b/events.c
@@ -1,3 +1,20 @@
+/* Copyright (C) 2000 Shawn Betts
+ *
+ * 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, 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 software; see the file COPYING. If not, write to
+ * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
+ * Boston, MA 02111-1307 USA */
+
#include <X11/X.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
diff --git a/events.h b/events.h
index b92fe81..8751e68 100644
--- a/events.h
+++ b/events.h
@@ -1,4 +1,21 @@
-/* Function prototypes */
+/* Function prototypes
+ *
+ * Copyright (C) 2000 Shawn Betts
+ *
+ * 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, 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 software; see the file COPYING. If not, write to
+ * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
+ * Boston, MA 02111-1307 USA */
#ifndef _EVENTS_H
#define _EVENTS_H
diff --git a/list.c b/list.c
index 9b7e281..f772033 100644
--- a/list.c
+++ b/list.c
@@ -1,4 +1,21 @@
-/* functions for handling the window list */
+/* functions for handling the window list
+ *
+ * Copyright (C) 2000 Shawn Betts
+ *
+ * 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, 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 software; see the file COPYING. If not, write to
+ * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
+ * Boston, MA 02111-1307 USA */
#include <stdio.h>
#include <stdlib.h>
diff --git a/list.h b/list.h
index 98e5cbd..cc68e73 100644
--- a/list.h
+++ b/list.h
@@ -1,4 +1,21 @@
-/* functions for managing the window list */
+/* functions for managing the window list
+ *
+ * Copyright (C) 2000 Shawn Betts
+ *
+ * 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, 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 software; see the file COPYING. If not, write to
+ * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
+ * Boston, MA 02111-1307 USA */
#ifndef _LIST_H
#define _LIST_H
diff --git a/main.c b/main.c
index bba63cb..f147a64 100644
--- a/main.c
+++ b/main.c
@@ -1,3 +1,21 @@
+/*
+ * Copyright (C) 2000 Shawn Betts
+ *
+ * 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, 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 software; see the file COPYING. If not, write to
+ * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
+ * Boston, MA 02111-1307 USA */
+
#include <X11/X.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
diff --git a/manage.c b/manage.c
index 8221819..c547d5c 100644
--- a/manage.c
+++ b/manage.c
@@ -1,5 +1,22 @@
/* Manage windows, such as Mapping them and making sure the proper key
- Grabs have been put in place. */
+ * Grabs have been put in place.
+ *
+ * Copyright (C) 2000 Shawn Betts
+ *
+ * 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, 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 software; see the file COPYING. If not, write to
+ * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
+ * Boston, MA 02111-1307 USA */
#include <X11/X.h>
#include <X11/Xlib.h>
diff --git a/manage.h b/manage.h
index de58131..d5a701c 100644
--- a/manage.h
+++ b/manage.h
@@ -1,4 +1,21 @@
-/* manage.h */
+/* manage.h
+ *
+ * Copyright (C) 2000 Shawn Betts
+ *
+ * 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, 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 software; see the file COPYING. If not, write to
+ * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
+ * Boston, MA 02111-1307 USA */
#ifndef _MANAGE_H
#define _MANAGE_H
diff --git a/ratpoison.h b/ratpoison.h
index a8ab47a..02dab67 100644
--- a/ratpoison.h
+++ b/ratpoison.h
@@ -1,4 +1,21 @@
-/* Some standard datatypes for ratpoison */
+/* Some standard datatypes for ratpoison
+ *
+ * Copyright (C) 2000 Shawn Betts
+ *
+ * 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, 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 software; see the file COPYING. If not, write to
+ * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
+ * Boston, MA 02111-1307 USA */
#ifndef _RATPOISON_H
#define _RATPOISON_H