Advertisement
Guest User

Untitled

a guest
Feb 26th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. # STATUS
  2. set-option -g status-fg green
  3. set-option -g status-bg black
  4. set-option -g status-attr dim
  5.  
  6. # default interval is 15 seconds
  7. set -g status-interval 5
  8.  
  9. # H host
  10. # I current window index
  11. # P current pane index
  12. # S session name
  13. # T current window title
  14. # W current window name
  15.  
  16. # display hostname on left
  17. set-option -g status-left "#H"
  18. # display Mon 15/09 13:37 on right
  19. set -g status-right "#[fg=green]%a %d/%m #[fg=white]%H:%M"
  20. set-option -g status-right-fg white
  21. set-option -g status-right-attr bright
  22.  
  23. set-option -g mouse on
  24.  
  25. # center the stuff
  26. set -g status-justify centre
  27. set-option -g window-status-format "#I•#W#F"
  28. set-option -g window-status-current-format "#[fg=yellow][#[fg=white]#I‣#W#F#[fg=yellow]]"
  29. # white on selected window
  30. set-window-option -g window-status-current-fg white
  31. set-window-option -g window-status-current-attr bright
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement