performance boost by spawning bash withouth rc/profile

This commit is contained in:
Jorge Morante 2016-10-17 21:49:09 +02:00
parent c5353288f1
commit 7faf361f68
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source $CURRENT_DIR/utils.sh
function init_fingers_pane() {
local pane_id=$(tmux new-window -F "#{pane_id}" -P -d -n "[fingers]")
local pane_id=$(tmux new-window -F "#{pane_id}" -P -d -n "[fingers]" 'bash --norc --noprofile')
echo $pane_id
}