All of my important config files
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.8 KiB

7 years ago
7 years ago
  1. #### COLOUR
  2. tm_icon="♟"
  3. tm_color_active=colour51
  4. tm_color_inactive=colour241
  5. tm_color_feature=colour198
  6. tm_color_music=colour41
  7. tm_active_border_color=colour51
  8. # separators
  9. tm_separator_left_bold="◀"
  10. tm_separator_left_thin="❮"
  11. tm_separator_right_bold="▶"
  12. tm_separator_right_thin="❯"
  13. set -g status-left-length 32
  14. set -g status-right-length 150
  15. set -g status-interval 5
  16. # default statusbar colors
  17. # set-option -g status-bg colour0
  18. set-option -g status-fg $tm_color_active
  19. set-option -g status-bg default
  20. # default window title colors
  21. set -g window-status-style fg=$tm_color_inactive,bg=default
  22. set -g window-status-format "#I #W"
  23. # active window title colors
  24. set -g window-status-current-style fg=$tm_color_active,bg=default
  25. set-window-option -g window-status-current-format "#[bold]#I #W"
  26. # pane border
  27. set -g pane-border-style fg=$tm_color_inactive
  28. set -g pane-active-border-style fg=$tm_active_border_color
  29. # message text
  30. set -g message-style bg=default,fg=$tm_color_active
  31. # pane number display
  32. set-option -g display-panes-active-colour $tm_color_active
  33. set-option -g display-panes-colour $tm_color_inactive
  34. # clock
  35. set-window-option -g clock-mode-colour $tm_color_active
  36. #tm_tunes="#[fg=$tm_color_music]#(osascript ~/.dotfiles/applescripts/tunes.scpt)"
  37. #tm_battery="#(~/.dotfiles/bin/battery_indicator.sh)"
  38. #tm_banshee="#[fg=$tm_color_music]#($HOME/.dotfiles/tmux/banshee.sh)"
  39. tm_clementine="#[fg=$tm_color_music]#($HOME/.dotfiles/tmux/strawberry.sh)"
  40. tm_battery="#[fg=$tm_color_inactive]#(upower -i /org/freedesktop/UPower/devices/battery_BAT0 | grep percentage | awk '{print $2}')"
  41. tm_date="#[fg=$tm_color_inactive] %R %d %b"
  42. tm_host="#[fg=$tm_color_feature,bold]#h"
  43. tm_session_name="#[fg=$tm_color_feature,bold]$tm_icon #S"
  44. set -g status-left $tm_session_name' '
  45. set -g status-right $tm_clementine' '$tm_battery' '$tm_date' '$tm_host