I am trying to create a script that launches tmux with a specific pane layout and size. I am following the tutorial in the following link: https://leanpub.com/the-tao-of-tmux/read#pane-resizing
However when I try to use tmux split-window -p 75 it's more like a 40%/60% split. I've also tried tmux split-window -p 90 to see if I could get a bigger, and more evident, difference in size between the two panes but it doesn't change much.
These is the code that I am using:
#!/bin/sh tmux new -s abc -d tmux split-window -p 90 tmux attach -t abc I know how to create the layout that I want but my problem is getting the pane sizes that I need.