aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS5
-rw-r--r--example/status.zig2
-rw-r--r--protocol/river-control-unstable-v1.xml2
-rw-r--r--protocol/river-status-unstable-v1.xml2
-rw-r--r--river/Box.zig2
-rw-r--r--river/Config.zig2
-rw-r--r--river/Control.zig2
-rw-r--r--river/Cursor.zig3
-rw-r--r--river/Decoration.zig2
-rw-r--r--river/DecorationManager.zig2
-rw-r--r--river/DragIcon.zig2
-rw-r--r--river/InputManager.zig3
-rw-r--r--river/Keyboard.zig2
-rw-r--r--river/LayerSurface.zig2
-rw-r--r--river/Mapping.zig2
-rw-r--r--river/Mode.zig2
-rw-r--r--river/Output.zig4
-rw-r--r--river/OutputStatus.zig2
-rw-r--r--river/PointerMapping.zig2
-rw-r--r--river/Root.zig2
-rw-r--r--river/Seat.zig2
-rw-r--r--river/SeatStatus.zig2
-rw-r--r--river/Server.zig2
-rw-r--r--river/StatusManager.zig2
-rw-r--r--river/View.zig3
-rw-r--r--river/VoidView.zig2
-rw-r--r--river/XdgPopup.zig2
-rw-r--r--river/XdgToplevel.zig2
-rw-r--r--river/XwaylandUnmanaged.zig2
-rw-r--r--river/XwaylandView.zig2
-rw-r--r--river/c.zig2
-rw-r--r--river/command.zig2
-rw-r--r--river/command/attach_mode.zig2
-rw-r--r--river/command/close.zig2
-rw-r--r--river/command/config.zig2
-rw-r--r--river/command/declare_mode.zig2
-rw-r--r--river/command/enter_mode.zig2
-rw-r--r--river/command/exit.zig2
-rw-r--r--river/command/filter.zig2
-rw-r--r--river/command/focus_follows_cursor.zig2
-rw-r--r--river/command/focus_output.zig2
-rw-r--r--river/command/focus_view.zig2
-rw-r--r--river/command/layout.zig2
-rw-r--r--river/command/map.zig3
-rw-r--r--river/command/mod_master_count.zig2
-rw-r--r--river/command/mod_master_factor.zig2
-rw-r--r--river/command/move.zig2
-rw-r--r--river/command/opacity.zig2
-rw-r--r--river/command/send_to_output.zig2
-rw-r--r--river/command/spawn.zig2
-rw-r--r--river/command/swap.zig2
-rw-r--r--river/command/tags.zig2
-rw-r--r--river/command/toggle_float.zig2
-rw-r--r--river/command/toggle_fullscreen.zig2
-rw-r--r--river/command/xcursor_theme.zig2
-rw-r--r--river/command/zoom.zig2
-rw-r--r--river/log.zig2
-rw-r--r--river/main.zig2
-rw-r--r--river/render.zig2
-rw-r--r--river/test_main.zig2
-rw-r--r--river/util.zig2
-rw-r--r--river/view_stack.zig2
-rw-r--r--riverctl/main.zig2
-rw-r--r--rivertile/main.zig2
64 files changed, 68 insertions, 69 deletions
diff --git a/AUTHORS b/AUTHORS
new file mode 100644
index 0000000..ed1033a
--- /dev/null
+++ b/AUTHORS
@@ -0,0 +1,5 @@
+The following developers have contributed code to river:
+ Isaac Freund
+ Leon Henrik Plickat
+ Marten Ringwelski
+ Rishabh Das
diff --git a/example/status.zig b/example/status.zig
index d4d61a1..76cf3d8 100644
--- a/example/status.zig
+++ b/example/status.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/protocol/river-control-unstable-v1.xml b/protocol/river-control-unstable-v1.xml
index 838bba5..b8faa45 100644
--- a/protocol/river-control-unstable-v1.xml
+++ b/protocol/river-control-unstable-v1.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<protocol name="river_control_unstable_v1">
<copyright>
- Copyright 2020 Isaac Freund
+ Copyright 2020 The River Developers
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
diff --git a/protocol/river-status-unstable-v1.xml b/protocol/river-status-unstable-v1.xml
index 93040cd..e31da23 100644
--- a/protocol/river-status-unstable-v1.xml
+++ b/protocol/river-status-unstable-v1.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<protocol name="river_status_unstable_v1">
<copyright>
- Copyright 2020 Isaac Freund
+ Copyright 2020 The River Developers
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
diff --git a/river/Box.zig b/river/Box.zig
index 58210a0..9efe073 100644
--- a/river/Box.zig
+++ b/river/Box.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/Config.zig b/river/Config.zig
index f1ed500..dddba8a 100644
--- a/river/Config.zig
+++ b/river/Config.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/Control.zig b/river/Control.zig
index 23ea98b..eb78f33 100644
--- a/river/Control.zig
+++ b/river/Control.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/Cursor.zig b/river/Cursor.zig
index e58c42b..17ebc42 100644
--- a/river/Cursor.zig
+++ b/river/Cursor.zig
@@ -1,7 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
-// Copyright 2020 Leon Henrik Plickat
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/Decoration.zig b/river/Decoration.zig
index 4a21fff..f1d06ab 100644
--- a/river/Decoration.zig
+++ b/river/Decoration.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/DecorationManager.zig b/river/DecorationManager.zig
index 9a84f93..22998b5 100644
--- a/river/DecorationManager.zig
+++ b/river/DecorationManager.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/DragIcon.zig b/river/DragIcon.zig
index ff9854b..22b9d19 100644
--- a/river/DragIcon.zig
+++ b/river/DragIcon.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/InputManager.zig b/river/InputManager.zig
index 584e819..026732c 100644
--- a/river/InputManager.zig
+++ b/river/InputManager.zig
@@ -1,7 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
-// Copyright 2020 Marten Ringwelski
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/Keyboard.zig b/river/Keyboard.zig
index ab91aa3..06bdf90 100644
--- a/river/Keyboard.zig
+++ b/river/Keyboard.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/LayerSurface.zig b/river/LayerSurface.zig
index 51486ad..d2af692 100644
--- a/river/LayerSurface.zig
+++ b/river/LayerSurface.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/Mapping.zig b/river/Mapping.zig
index 61cfe57..1518f85 100644
--- a/river/Mapping.zig
+++ b/river/Mapping.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/Mode.zig b/river/Mode.zig
index 9639c81..6f39f25 100644
--- a/river/Mode.zig
+++ b/river/Mode.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/Output.zig b/river/Output.zig
index 91c0f25..e65d4d0 100644
--- a/river/Output.zig
+++ b/river/Output.zig
@@ -1,8 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
-// Copyright 2020 Leon Henrik Plickat
-// Copyright 2020 Marten Ringwelski
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/OutputStatus.zig b/river/OutputStatus.zig
index a99e169..298a9d1 100644
--- a/river/OutputStatus.zig
+++ b/river/OutputStatus.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/PointerMapping.zig b/river/PointerMapping.zig
index 161d17a..cc41cc9 100644
--- a/river/PointerMapping.zig
+++ b/river/PointerMapping.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/Root.zig b/river/Root.zig
index 38fd24f..4029992 100644
--- a/river/Root.zig
+++ b/river/Root.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/Seat.zig b/river/Seat.zig
index c35ab79..198cd7c 100644
--- a/river/Seat.zig
+++ b/river/Seat.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/SeatStatus.zig b/river/SeatStatus.zig
index 28df511..44f3ae3 100644
--- a/river/SeatStatus.zig
+++ b/river/SeatStatus.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/Server.zig b/river/Server.zig
index 3c876b1..f93ffe8 100644
--- a/river/Server.zig
+++ b/river/Server.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/StatusManager.zig b/river/StatusManager.zig
index b997a3e..bd4d48b 100644
--- a/river/StatusManager.zig
+++ b/river/StatusManager.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/View.zig b/river/View.zig
index b96bc9d..6992049 100644
--- a/river/View.zig
+++ b/river/View.zig
@@ -1,7 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
-// Copyright 2020 Leon Henrik Plickat
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/VoidView.zig b/river/VoidView.zig
index 5b1175c..033286d 100644
--- a/river/VoidView.zig
+++ b/river/VoidView.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/XdgPopup.zig b/river/XdgPopup.zig
index 462c8e3..7f73582 100644
--- a/river/XdgPopup.zig
+++ b/river/XdgPopup.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/XdgToplevel.zig b/river/XdgToplevel.zig
index 4af318a..6f28874 100644
--- a/river/XdgToplevel.zig
+++ b/river/XdgToplevel.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/XwaylandUnmanaged.zig b/river/XwaylandUnmanaged.zig
index ed1fa07..746e962 100644
--- a/river/XwaylandUnmanaged.zig
+++ b/river/XwaylandUnmanaged.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/XwaylandView.zig b/river/XwaylandView.zig
index 7f723e5..04a6b60 100644
--- a/river/XwaylandView.zig
+++ b/river/XwaylandView.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/c.zig b/river/c.zig
index 7670f58..26363dc 100644
--- a/river/c.zig
+++ b/river/c.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/command.zig b/river/command.zig
index 0867ca7..7d75f0f 100644
--- a/river/command.zig
+++ b/river/command.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/command/attach_mode.zig b/river/command/attach_mode.zig
index 7be7d28..6dd1dd5 100644
--- a/river/command/attach_mode.zig
+++ b/river/command/attach_mode.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Leon Henrik Plickat
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/command/close.zig b/river/command/close.zig
index b36e7b1..340fc0d 100644
--- a/river/command/close.zig
+++ b/river/command/close.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/command/config.zig b/river/command/config.zig
index 3656e83..e889d05 100644
--- a/river/command/config.zig
+++ b/river/command/config.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/command/declare_mode.zig b/river/command/declare_mode.zig
index 9dc2dfc..a5ba771 100644
--- a/river/command/declare_mode.zig
+++ b/river/command/declare_mode.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/command/enter_mode.zig b/river/command/enter_mode.zig
index ada18e8..41077fe 100644
--- a/river/command/enter_mode.zig
+++ b/river/command/enter_mode.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/command/exit.zig b/river/command/exit.zig
index ecbe772..db378fc 100644
--- a/river/command/exit.zig
+++ b/river/command/exit.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/command/filter.zig b/river/command/filter.zig
index 33c5397..cf3a47b 100644
--- a/river/command/filter.zig
+++ b/river/command/filter.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Leon Henrik Plickat
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/command/focus_follows_cursor.zig b/river/command/focus_follows_cursor.zig
index 392e69f..b7744b1 100644
--- a/river/command/focus_follows_cursor.zig
+++ b/river/command/focus_follows_cursor.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Marten Ringwelski
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/command/focus_output.zig b/river/command/focus_output.zig
index 1bce2a4..a2cfd5b 100644
--- a/river/command/focus_output.zig
+++ b/river/command/focus_output.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/command/focus_view.zig b/river/command/focus_view.zig
index 3ac3b12..650e848 100644
--- a/river/command/focus_view.zig
+++ b/river/command/focus_view.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/command/layout.zig b/river/command/layout.zig
index 10ed19f..4ca8f3a 100644
--- a/river/command/layout.zig
+++ b/river/command/layout.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Leon Henrik Plickat
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/command/map.zig b/river/command/map.zig
index c5b421d..a7b95f9 100644
--- a/river/command/map.zig
+++ b/river/command/map.zig
@@ -1,7 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
-// Copyright 2020 Marten Ringwelski
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/command/mod_master_count.zig b/river/command/mod_master_count.zig
index ffcd1d1..10dfa90 100644
--- a/river/command/mod_master_count.zig
+++ b/river/command/mod_master_count.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/command/mod_master_factor.zig b/river/command/mod_master_factor.zig
index 983ce37..d692964 100644
--- a/river/command/mod_master_factor.zig
+++ b/river/command/mod_master_factor.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/command/move.zig b/river/command/move.zig
index 49266f1..cdb29e0 100644
--- a/river/command/move.zig
+++ b/river/command/move.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Leon Henrik Plickat
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/command/opacity.zig b/river/command/opacity.zig
index 7cf8e86..68466db 100644
--- a/river/command/opacity.zig
+++ b/river/command/opacity.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Leon Henrik Plickat
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/command/send_to_output.zig b/river/command/send_to_output.zig
index 6db9cc4..694bcb5 100644
--- a/river/command/send_to_output.zig
+++ b/river/command/send_to_output.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/command/spawn.zig b/river/command/spawn.zig
index 101e377..8daa303 100644
--- a/river/command/spawn.zig
+++ b/river/command/spawn.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/command/swap.zig b/river/command/swap.zig
index 093f318..ac2f1a8 100644
--- a/river/command/swap.zig
+++ b/river/command/swap.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Marten Ringwelski
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/command/tags.zig b/river/command/tags.zig
index 243b286..2ede528 100644
--- a/river/command/tags.zig
+++ b/river/command/tags.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/command/toggle_float.zig b/river/command/toggle_float.zig
index 06f9024..513da11 100644
--- a/river/command/toggle_float.zig
+++ b/river/command/toggle_float.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/command/toggle_fullscreen.zig b/river/command/toggle_fullscreen.zig
index 71c17ab..aed6e0c 100644
--- a/river/command/toggle_fullscreen.zig
+++ b/river/command/toggle_fullscreen.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/command/xcursor_theme.zig b/river/command/xcursor_theme.zig
index f7a94ed..cb8178f 100644
--- a/river/command/xcursor_theme.zig
+++ b/river/command/xcursor_theme.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/command/zoom.zig b/river/command/zoom.zig
index 3efdc65..02cb974 100644
--- a/river/command/zoom.zig
+++ b/river/command/zoom.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/log.zig b/river/log.zig
index 3c4930b..80fb266 100644
--- a/river/log.zig
+++ b/river/log.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/main.zig b/river/main.zig
index 7b7eeb8..4a86814 100644
--- a/river/main.zig
+++ b/river/main.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/render.zig b/river/render.zig
index c9ae1b6..22a58c1 100644
--- a/river/render.zig
+++ b/river/render.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/test_main.zig b/river/test_main.zig
index 2ed8247..fea7ed8 100644
--- a/river/test_main.zig
+++ b/river/test_main.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/util.zig b/river/util.zig
index 5029ce3..d28122c 100644
--- a/river/util.zig
+++ b/river/util.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/river/view_stack.zig b/river/view_stack.zig
index 2bf695e..f4ccb7f 100644
--- a/river/view_stack.zig
+++ b/river/view_stack.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/riverctl/main.zig b/riverctl/main.zig
index 7bfb448..e3453eb 100644
--- a/riverctl/main.zig
+++ b/riverctl/main.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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
diff --git a/rivertile/main.zig b/rivertile/main.zig
index e669920..d5cb8d1 100644
--- a/rivertile/main.zig
+++ b/rivertile/main.zig
@@ -1,6 +1,6 @@
// This file is part of river, a dynamic tiling wayland compositor.
//
-// Copyright 2020 Isaac Freund
+// Copyright 2020 The River Developers
//
// 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