]> git.sur5r.net Git - i3/i3/commitdiff
Add licensing information
authorAxel Wagner <mail@merovius.de>
Sat, 7 Aug 2010 16:05:16 +0000 (18:05 +0200)
committerAxel Wagner <mail@merovius.de>
Sat, 7 Aug 2010 16:05:16 +0000 (18:05 +0200)
14 files changed:
i3bar/LICENSE [new file with mode: 0644]
i3bar/include/child.h
i3bar/include/common.h
i3bar/include/ipc.h
i3bar/include/outputs.h
i3bar/include/util.h
i3bar/include/workspaces.h
i3bar/include/xcb.h
i3bar/src/child.c
i3bar/src/ipc.c
i3bar/src/main.c
i3bar/src/outputs.c
i3bar/src/workspaces.c
i3bar/src/xcb.c

diff --git a/i3bar/LICENSE b/i3bar/LICENSE
new file mode 100644 (file)
index 0000000..4fe52a0
--- /dev/null
@@ -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.
index 5d945235f59c70c86ab90dac69bdc743b8ed58ca..0405816d2b52e6abbf237985923c530fc2fd639e 100644 (file)
@@ -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_
 
index b77ac8ea94c99d629741529405d11513661c56e1..d6b63a7ecea532a71b8c55844c1d57580a294a85 100644 (file)
@@ -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_
 
index c91960445f1bb8210c1774207571f5347a890853..0eba64fab69157b335655d70b906210eda150777 100644 (file)
@@ -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_
 
index 8a12def426c3b5ae3c35200a46eab4e403a9afa8..837aa50b26fa38da92861f44abcf3bde78793939 100644 (file)
@@ -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_
 
index 08bdc3356880a658bc73469a2f4ac8cb241a42a4..0f5dd3e3083496fad2a705f1db74083f3373d6c2 100644 (file)
@@ -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_
 
index 1617d0f103fda6ed0f56168d517267528fd96f62..64da21a7c0fdde98094ab186f6e43ca12138d831 100644 (file)
@@ -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_
 
index c22b1e43e5993cce2cde9e79d8099aa1b56e931b..af2c89336b110ca8a5a66092202bb4a95aa07aeb 100644 (file)
@@ -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_
 
index b14f873bfc329c7a4e3519f60bb3ca88c5f50068..2b0fb780a77b1a27bd857188ea7846439c659b32 100644 (file)
@@ -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 <stdlib.h>
 #include <unistd.h>
 #include <sys/types.h>
index 86c61f863a3d255e4e52d3242d2895745670e16f..59563636d0fa2d9a62a2b65837a21651dd9d4fab 100644 (file)
@@ -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 <stdlib.h>
 #include <stdio.h>
 #include <unistd.h>
index 909106b3f5cf34b1923b652a8756c790b6e9e98d..45a4c0dc3d8743f21171cb0f94f046e1650a9337 100644 (file)
@@ -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 <stdio.h>
 #include <i3/ipc.h>
 #include <string.h>
index 0f035ac09654e750a3191befece74d2f919f1061..de905783f68e70ce9e562f15a3658fcf96d015d3 100644 (file)
@@ -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 <string.h>
 #include <stdlib.h>
 #include <stdio.h>
index be8a2a411d1df49973749386acbe393109b8fe18..8ba79eecfc98f8d8b4e0f9edc52873b6ce977dac 100644 (file)
@@ -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 <string.h>
 #include <stdlib.h>
 #include <stdio.h>
index dd19feafefe62aba7a805fde3ca22097b605b55a..ae1c8278ad1500298c6bec02c95ea2aca80479f5 100644 (file)
@@ -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 <xcb/xcb.h>
 #include <xcb/xproto.h>
 #include <xcb/xcb_event.h>