tmux start application
https://youtu.be/c-a2Bnv_NJ0
Scripting tmux to open up specific applications can be intimidating your first
time. It can be tricky to get it to start in the right directory. If you are
trying to assign applictaions to a keybinding it can be easy to mess up and
have weird things happen every time your ~/.tmux.conf gets sourced.
Open htop in an above split # [1]
I used this one for a number of years to take a quick peek into my systems
performance while a memory intensive task was running.
bind -n M-t split-window htop \; swap-pane -U
ποΈ note that the swap-pane -U will make the htop split active immediately
Open htop in a popup # [2]
With the new tmux popup windows I really like the flow of just peeking at
htop in a popup and jumping back into what I was doing. It can have a more
consistennt look, and not mess with the window layouts.
bind -n M-t popup -E -h 95% -w 95% -x 100% "htop"
Open an applicaiton in the current directory # [3]
One thing that can be tricky is getting ap...