summaryrefslogtreecommitdiffstats
path: root/session.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-09-01 13:09:49 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-09-01 13:09:49 +0000
commit7d5e4947160d9355353c29a983e373b66c05abef (patch)
treeefc2a0bce29bc661d657895828bb486c632a8cb1 /session.c
parentf8aa5821be6bb802785c5ca7c23c91465cfba4a3 (diff)
When using tmux as a login shell, there is currently no way to specify a shell
to be used as a login shell inside tmux, so add a default-shell session option. This sets the shell invoked as a login shell when the default-command option is empty. The default option value is whichever of $SHELL, getpwuid(getuid())'s pw_shell or /bin/sh is valid first. Based on a diff from martynas@, changed by me to be a session option rather than a window option.
Diffstat (limited to 'session.c')
-rw-r--r--session.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/session.c b/session.c
index 2e1aae3d..55d38c80 100644
--- a/session.c
+++ b/session.c
@@ -19,6 +19,7 @@
#include <sys/types.h>
#include <sys/time.h>
+#include <paths.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
@@ -207,6 +208,7 @@ session_new(struct session *s,
{
struct window *w;
struct environ env;
+ const char *shell;
u_int hlimit;
environ_init(&env);
@@ -214,9 +216,13 @@ session_new(struct session *s,
environ_copy(&s->environ, &env);
server_fill_environ(s, &env);
+ shell = options_get_string(&s->options, "default-shell");
+ if (*shell == '\0' || areshell(shell))
+ shell = _PATH_BSHELL;
+
hlimit = options_get_number(&s->options, "history-limit");
w = window_create(
- name, cmd, cwd, &env, &s->tio, s->sx, s->sy, hlimit, cause);
+ name, cmd, shell, cwd, &env, &s->tio, s->sx, s->sy, hlimit, cause);
if (w == NULL) {
environ_free(&env);
return (NULL);