this post was submitted on 15 Aug 2024
20 points (95.5% liked)
Linux
5162 readers
135 users here now
A community for everything relating to the linux operating system
Also check out !linux_memes@programming.dev
Original icon base courtesy of lewing@isc.tamu.edu and The GIMP
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Maybe it's still using the borked config because all sessions were not exited? Try exiting it and then make sure no tmux process is still running, by for example running
ps -aux | grep tmux
.Otherwise there must be some tmux config still lying around in your $HOME.
Edit: I don't know anything about Macs so I'm just assuming it works similar to linux.
Does fzf search hidden folders? You could also try with this, to make extra sure:
find $HOME -name "*tmux*"
.There was in fact a process still running. Killed it, reinstalled tmux and everythings back to default. Thanks!
For future reference: the command to kill the tmux daemon (and as a side-effect, all other running tmux processes connected to it) is
tmux kill-server
(or in tmux, typing:kill-server
, assuming default keybindings).