#!/usr/bin/env bash

cols=`tmux display -p "#{pane_width}"`

if [ "$LAYOUT_FULLSCREEN" = "1" ]; then
  tmux split-window -h -l 37% -c '#{pane_current_path}'
  tmux select-pane -t 1
else
  tmux split-window -h -l 43% -c '#{pane_current_path}'
  tmux select-pane -t 1
fi
