]> git.sur5r.net Git - i3/i3/commitdiff
Fix start_application() doc about which shell is used
authorTony Crisci <tony@dubstepdish.com>
Sun, 21 Dec 2014 00:17:14 +0000 (19:17 -0500)
committerMichael Stapelberg <michael@stapelberg.de>
Mon, 22 Dec 2014 08:48:03 +0000 (09:48 +0100)
Since this commit:

f691a55923850a4d315450925fc98733d07b69c9

the shell that is used is the system's bourne shell (/bin/sh) and the
env variable SHELL is not considered.

No logic changes.

include/startup.h
src/startup.c

index 9cbdf17bd20950bc6de744b43d7300b3df3a9bfd..2f28baa772f9000918c9a6e341579d0f6a94c056 100644 (file)
@@ -21,8 +21,8 @@
  * (immediately), the application is reparented to init (process-id 1), which
  * correctly handles childs, so we don’t have to do it :-).
  *
- * The shell is determined by looking for the SHELL environment variable. If
- * it does not exist, /bin/sh is used.
+ * The shell used to start applications is the system's bourne shell (i.e.,
+ * /bin/sh).
  *
  * The no_startup_id flag determines whether a startup notification context
  * (and ID) should be created, which is the default and encouraged behavior.
index d6fe6d40debb1f9a1bca1961852ad6100480da5a..ebe8c1d9439601a426bee70aa512d95c70a7a44f 100644 (file)
@@ -123,8 +123,8 @@ void startup_sequence_delete(struct Startup_Sequence *sequence) {
  * the application is reparented to init (process-id 1), which correctly handles
  * childs, so we don’t have to do it :-).
  *
- * The shell is determined by looking for the SHELL environment variable. If it
- * does not exist, /bin/sh is used.
+ * The shell used to start applications is the system's bourne shell (i.e.,
+ * /bin/sh).
  *
  * The no_startup_id flag determines whether a startup notification context
  * (and ID) should be created, which is the default and encouraged behavior.