Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

2
  • 1
    Is possible to use "-" for sizes: tmux new-session -s abc -d -x - -y - Commented Dec 5, 2020 at 17:16
  • One minor note with this, the window may still be resized after attaching as the tmux status bar consumes a line, and causes a recalculation of height. If using bash (or compatible), you can do -y $(( $(tput lines) - 1 )). Commented Nov 10, 2024 at 23:47