## Panel 0 colors tmux select-pane -t:.0 -P 'fg=blue,bg=#fffff0' ## Prompt (ok, ok, not specific for tmux) PS1="\[\033[01;34m\]\w\[\033[00m\]\>" ## Update time each second tmux set -g status-right %H:%M:%S tmux set-option -s status-interval 1 ## Light colors ``` tmux set -g window-style 'fg=#171421,bg=#ffffff' ``` ## Pane titles ``` tmux set -g pane-border-status top tmux set -g pane-border-format "#{pane_index} #{pane_title}" tmux select-pane -t 1 -T "on-premises" ``` ## Sharing a read-only tmux session * Start it with ``` ./ttyd -R tmux new -A -s ttyd bash ``` * Join it with ``` tmux new -A -s ttyd ``` * Share with public ip ``` ssh -R 80:localhost:7681 ssh.localhost.run ``` * Solarized colors (ctrl+b :) ``` set -g window-active-style 'fg=#485e65,bg=#fdf6e3' set status off set -g pane-border-bg '#fdf6e3' ```