From b1088a37ab750a48c16069a5b9ab3ba6e674cc0f Mon Sep 17 00:00:00 2001 From: "Florian RICHER (MrDev023)" Date: Thu, 10 Feb 2022 09:15:20 +0100 Subject: [PATCH] [ALACRITTY] Use tmux by default with login shell --- configs/alacritty/alacritty.yml | 4 +--- configs/tmux/tmux.conf | 4 ++-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/configs/alacritty/alacritty.yml b/configs/alacritty/alacritty.yml index 0f3a06a..73458b6 100644 --- a/configs/alacritty/alacritty.yml +++ b/configs/alacritty/alacritty.yml @@ -1,7 +1,5 @@ shell: - program: /bin/bash - args: - - --login + program: tmux font: normal: family: FiraCode NF diff --git a/configs/tmux/tmux.conf b/configs/tmux/tmux.conf index 19a5b30..e68e21d 100644 --- a/configs/tmux/tmux.conf +++ b/configs/tmux/tmux.conf @@ -109,8 +109,8 @@ bind -r ( switch-client -p bind -r ) switch-client -n # set zsh as default shell -set -g default-command /bin/bash -set -g default-shell /bin/bash +# set -g default-command "/bin/bash --login" +# set -g default-shell /bin/bash # recording program output to a log bind P pipe-pane -o "cat >>~/#W.log" \; display "Toggled logging to ~/#W.log"