git.lucas.co / cce-compositor
Wayland compositor (wlroots)
git clone https://git.lucas.co/cce-compositor.git

commitf793d0f9fca55fe890409cce0a9c0ab673599b88
parentf2ef094395
authorIsaac Freund <[email protected]>
date2020-09-28 22:57
docs: use foot in the example config.sh

 contrib/config.sh     | 4 ++--
 river/command/map.zig | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/contrib/config.sh b/contrib/config.sh
index 261ed4b..620b29f 100755
--- a/contrib/config.sh
+++ b/contrib/config.sh
@@ -3,8 +3,8 @@
 # Use the "logo" key as the primary modifier
 mod="Mod4"
 
-# Mod+Shift+Return to start an instance of alacritty
-riverctl map normal $mod+Shift Return spawn alacritty
+# Mod+Shift+Return to start an instance of foot (https://codeberg.org/dnkl/foot)
+riverctl map normal $mod+Shift Return spawn foot
 
 # Mod+Q to close the focused view
 riverctl map normal $mod Q close
diff --git a/river/command/map.zig b/river/command/map.zig
index 9d5c137..5eff26d 100644
--- a/river/command/map.zig
+++ b/river/command/map.zig
@@ -43,7 +43,7 @@ const modifier_names = [_]struct {
 /// Create a new mapping for a given mode
 ///
 /// Example:
-/// map normal Mod4+Shift Return spawn alacritty
+/// map normal Mod4+Shift Return spawn foot
 pub fn map(
     allocator: *std.mem.Allocator,
     seat: *Seat,