From 60da522e13134c46d406fedad095e393f482d797 Mon Sep 17 00:00:00 2001 From: Axel Wagner Date: Sat, 7 Aug 2010 18:05:16 +0200 Subject: [PATCH] Add licensing information --- i3bar/LICENSE | 27 +++++++++++++++++++++++++++ i3bar/include/child.h | 8 ++++++++ i3bar/include/common.h | 8 ++++++++ i3bar/include/ipc.h | 8 ++++++++ i3bar/include/outputs.h | 8 ++++++++ i3bar/include/util.h | 8 ++++++++ i3bar/include/workspaces.h | 8 ++++++++ i3bar/include/xcb.h | 8 ++++++++ i3bar/src/child.c | 10 ++++++++++ i3bar/src/ipc.c | 10 ++++++++++ i3bar/src/main.c | 8 ++++++++ i3bar/src/outputs.c | 10 ++++++++++ i3bar/src/workspaces.c | 10 ++++++++++ i3bar/src/xcb.c | 10 ++++++++++ 14 files changed, 141 insertions(+) create mode 100644 i3bar/LICENSE diff --git a/i3bar/LICENSE b/i3bar/LICENSE new file mode 100644 index 00000000..4fe52a0c --- /dev/null +++ b/i3bar/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) 2010, Axel Wagner +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + * Neither the name of Axel Wagner nor the + names of contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY Axel Wagner ''AS IS'' AND ANY +EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL Axel Wagner BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/i3bar/include/child.h b/i3bar/include/child.h index 5d945235..0405816d 100644 --- a/i3bar/include/child.h +++ b/i3bar/include/child.h @@ -1,3 +1,11 @@ +/* + * i3bar - an xcb-based status- and ws-bar for i3 + * + * © 2010 Axel Wagner and contributors + * + * See file LICNSE for license information + * + */ #ifndef CHILD_H_ #define CHILD_H_ diff --git a/i3bar/include/common.h b/i3bar/include/common.h index b77ac8ea..d6b63a7e 100644 --- a/i3bar/include/common.h +++ b/i3bar/include/common.h @@ -1,3 +1,11 @@ +/* + * i3bar - an xcb-based status- and ws-bar for i3 + * + * © 2010 Axel Wagner and contributors + * + * See file LICNSE for license information + * + */ #ifndef COMMON_H_ #define COMMON_H_ diff --git a/i3bar/include/ipc.h b/i3bar/include/ipc.h index c9196044..0eba64fa 100644 --- a/i3bar/include/ipc.h +++ b/i3bar/include/ipc.h @@ -1,3 +1,11 @@ +/* + * i3bar - an xcb-based status- and ws-bar for i3 + * + * © 2010 Axel Wagner and contributors + * + * See file LICNSE for license information + * + */ #ifndef IPC_H_ #define IPC_H_ diff --git a/i3bar/include/outputs.h b/i3bar/include/outputs.h index 8a12def4..837aa50b 100644 --- a/i3bar/include/outputs.h +++ b/i3bar/include/outputs.h @@ -1,3 +1,11 @@ +/* + * i3bar - an xcb-based status- and ws-bar for i3 + * + * © 2010 Axel Wagner and contributors + * + * See file LICNSE for license information + * + */ #ifndef OUTPUTS_H_ #define OUTPUTS_H_ diff --git a/i3bar/include/util.h b/i3bar/include/util.h index 08bdc335..0f5dd3e3 100644 --- a/i3bar/include/util.h +++ b/i3bar/include/util.h @@ -1,3 +1,11 @@ +/* + * i3bar - an xcb-based status- and ws-bar for i3 + * + * © 2010 Axel Wagner and contributors + * + * See file LICNSE for license information + * + */ #ifndef UTIL_H_ #define UTIL_H_ diff --git a/i3bar/include/workspaces.h b/i3bar/include/workspaces.h index 1617d0f1..64da21a7 100644 --- a/i3bar/include/workspaces.h +++ b/i3bar/include/workspaces.h @@ -1,3 +1,11 @@ +/* + * i3bar - an xcb-based status- and ws-bar for i3 + * + * © 2010 Axel Wagner and contributors + * + * See file LICNSE for license information + * + */ #ifndef WORKSPACES_H_ #define WORKSPACES_H_ diff --git a/i3bar/include/xcb.h b/i3bar/include/xcb.h index c22b1e43..af2c8933 100644 --- a/i3bar/include/xcb.h +++ b/i3bar/include/xcb.h @@ -1,3 +1,11 @@ +/* + * i3bar - an xcb-based status- and ws-bar for i3 + * + * © 2010 Axel Wagner and contributors + * + * See file LICNSE for license information + * + */ #ifndef XCB_H_ #define XCB_H_ diff --git a/i3bar/src/child.c b/i3bar/src/child.c index b14f873b..2b0fb780 100644 --- a/i3bar/src/child.c +++ b/i3bar/src/child.c @@ -1,3 +1,13 @@ +/* + * i3bar - an xcb-based status- and ws-bar for i3 + * + * © 2010 Axel Wagner and contributors + * + * See file LICNSE for license information + * + * src/child.c: Getting Input for the statusline + * + */ #include #include #include diff --git a/i3bar/src/ipc.c b/i3bar/src/ipc.c index 86c61f86..59563636 100644 --- a/i3bar/src/ipc.c +++ b/i3bar/src/ipc.c @@ -1,3 +1,13 @@ +/* + * i3bar - an xcb-based status- and ws-bar for i3 + * + * © 2010 Axel Wagner and contributors + * + * See file LICNSE for license information + * + * src/ipc.c: Communicating with i3 + * + */ #include #include #include diff --git a/i3bar/src/main.c b/i3bar/src/main.c index 909106b3..45a4c0dc 100644 --- a/i3bar/src/main.c +++ b/i3bar/src/main.c @@ -1,3 +1,11 @@ +/* + * i3bar - an xcb-based status- and ws-bar for i3 + * + * © 2010 Axel Wagner and contributors + * + * See file LICNSE for license information + * + */ #include #include #include diff --git a/i3bar/src/outputs.c b/i3bar/src/outputs.c index 0f035ac0..de905783 100644 --- a/i3bar/src/outputs.c +++ b/i3bar/src/outputs.c @@ -1,3 +1,13 @@ +/* + * i3bar - an xcb-based status- and ws-bar for i3 + * + * © 2010 Axel Wagner and contributors + * + * See file LICNSE for license information + * + * src/outputs.c: Maintaining the output-list + * + */ #include #include #include diff --git a/i3bar/src/workspaces.c b/i3bar/src/workspaces.c index be8a2a41..8ba79eec 100644 --- a/i3bar/src/workspaces.c +++ b/i3bar/src/workspaces.c @@ -1,3 +1,13 @@ +/* + * i3bar - an xcb-based status- and ws-bar for i3 + * + * © 2010 Axel Wagner and contributors + * + * See file LICNSE for license information + * + * src/workspaces.c: Maintaining the workspace-lists + * + */ #include #include #include diff --git a/i3bar/src/xcb.c b/i3bar/src/xcb.c index dd19feaf..ae1c8278 100644 --- a/i3bar/src/xcb.c +++ b/i3bar/src/xcb.c @@ -1,3 +1,13 @@ +/* + * i3bar - an xcb-based status- and ws-bar for i3 + * + * © 2010 Axel Wagner and contributors + * + * See file LICNSE for license information + * + * src/xcb.c: Communicating with X + * + */ #include #include #include -- 2.39.2