Anyone know how Theo got his tmux status bar to look like this?
Screenshot comes from this video: https://www.youtube.com/watch?v=VUxMfyzTM_Y. I've never seen this configuration and it makes tmux seem a lot more intuitive than the default one. I've been messing around with the config on mine but just can't get close. Is there a known tmux template he used or has he ever made his config public?
Theo - t3․gg
YouTube
My New Favorite Terminal Just Dropped
For the longest time I've been using Mac's default terminal. Ghostty finally make me switch, and now I'm never going back.
Thank you Blacksmith for sponsoring! Check them out at: https://soydev.link/blacksmith
SOURCES
https://x.com/mitchellh/status/1872377299250880524
https://x.com/mitchellh/status/1871663119187280293
https://x.com/theo/status...

Solution:Jump to solution
GitHub
GitHub - gpakosz/.tmux: Oh my tmux! My self-contained, pretty & ver...
Oh my tmux! My self-contained, pretty & versatile tmux configuration made with 💛🩷💙🖤❤️🤍 - gpakosz/.tmux
5 Replies
ahahah.. I've just spent a few hours going into the rabbit hole of tmux !
@Aiden
I managed to get it to work, with plugins and percentages (cpu, battery and so on), but coding it to have the colorful battery percentage thing is not that easy.
UPDATE:
holly cr@p! I just spent hours setting it up, to kind of clone the bar that Theo had in his video.. and now that I was about to finish it, I just found this:
Solution
GitHub
GitHub - gpakosz/.tmux: Oh my tmux! My self-contained, pretty & ver...
Oh my tmux! My self-contained, pretty & versatile tmux configuration made with 💛🩷💙🖤❤️🤍 - gpakosz/.tmux
Holly M!!!!!
stop any running tmux so we start clean
tmux kill-server 2>/dev/nullclone the repo
git clone --single-branch https://github.com/gpakosz/.tmux.git "$HOME/.oh-my-tmux"use the XDG layout the README shows
mkdir -p ~/.config/tmux ln -s "$HOME/.oh-my-tmux/.tmux.conf" ~/.config/tmux/tmux.conf cp "$HOME/.oh-my-tmux/.tmux.conf.local" ~/.config/tmux/tmux.conf.local``If you use Vim, like me, than enable Vim-style keys (following the author’s tip)
echo 'export EDITOR=vim' >> ~/.zshrc source ~/.zshrcTurn on mouse support Open your local config like this:
tmux then press: Ctrl-b euncomment the following line:
set -g mouse on... and that's it!
woah!! no way
thank you for the mention