aboutsummaryrefslogtreecommitdiff
path: root/example
diff options
context:
space:
mode:
authorIsaac Freund <mail@isaacfreund.com>2022-06-17 19:29:28 +0200
committerIsaac Freund <mail@isaacfreund.com>2022-06-17 19:29:28 +0200
commit78d96d19e48b0abed764a7a746597f866472b6a8 (patch)
treeabc671f0525d388b0f886a79491986e9b7eb6253 /example
parent9b04109c8255b447d14589962c44a4a3e531cfea (diff)
downloadriver-78d96d19e48b0abed764a7a746597f866472b6a8.tar.gz
river-78d96d19e48b0abed764a7a746597f866472b6a8.tar.xz
example/init: don't use exec
This causes far too much unnecessary confusion for people new to shell scripting and is fairly pointless anyways.
Diffstat (limited to 'example')
-rwxr-xr-xexample/init4
1 files changed, 2 insertions, 2 deletions
diff --git a/example/init b/example/init
index ebbab6f..269a38e 100755
--- a/example/init
+++ b/example/init
@@ -154,7 +154,7 @@ riverctl float-filter-add title "popup title with spaces"
# Set app-ids and titles of views which should use client side decorations
riverctl csd-filter-add app-id "gedit"
-# Set and exec into the default layout generator, rivertile.
+# Set the default layout generator to be rivertile and start it.
# River will send the process group of the init executable SIGTERM on exit.
riverctl default-layout rivertile
-exec rivertile -view-padding 6 -outer-padding 6
+rivertile -view-padding 6 -outer-padding 6