mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-02-14 17:49:59 +00:00
8 lines
239 B
Bash
Executable File
8 lines
239 B
Bash
Executable File
#!/bin/sh
|
|
# This removes the clock (and other extraneous stuff) from the
|
|
# tmux status bar, and it gives it a non-default color.
|
|
tmux set-option -g status-left ""
|
|
tmux set-option -g status-right ""
|
|
tmux set-option -g status-style bg=cyan
|
|
|