Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Complete tmux reset

Tags:

macos

tmux

I was wondering if it is possible to completely reset tmux (the UI mainly) ? I have tried deleting my ~/.tmux.conf and reinstalling tmux it but I always ended up with the same status bar I had defined.

like image 997
h.demoff Avatar asked Jul 10 '16 19:07

h.demoff


People also ask

Does tmux survive reboot?

There are helpful management tools out there, but they require initial configuration and continuous updates as your workflow evolves or you start new projects. tmux-resurrect saves all the little details from your tmux environment so it can be completely restored after a system restart (or when you feel like it).

Does tmux save sessions?

But with the tmux-resurrect plugin you can save and restore your sessions whenever you want by hitting a hotkey to save them and another hotkey to restore them.


1 Answers

Had forgotten to kill the existing sessions:

tmux kill-server 

was the solution (credits to: @Kent)

like image 59
h.demoff Avatar answered Sep 23 '22 01:09

h.demoff