Last active
January 20, 2017 11:23
-
-
Save pozgo/2d105870287f73abcea1f255a9b7368d to your computer and use it in GitHub Desktop.
Polinux Tmux Theme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Powerline Orange Block - Tmux Theme | |
# Created by Jim Myhrberg <[email protected]>. | |
# | |
# Inspired by vim-powerline: https://github.com/Lokaltog/powerline | |
# | |
# Requires terminal to be using a powerline compatible font, find one here: | |
# https://github.com/Lokaltog/powerline-fonts | |
# | |
# Status update interval | |
set -g status-interval 1 | |
# Basic status bar colors | |
set -g status-fg colour240 | |
set -g status-bg colour233 | |
# Left side of status bar | |
set -g status-left-bg colour233 | |
set -g status-left-fg colour243 | |
set -g status-left-length 40 | |
set -g status-left "#[fg=colour232,bg=colour130,bold] #S #[fg=colour130,bg=colour240,nobold]#[fg=colour233,bg=colour240] #(whoami) #[fg=colour240,bg=colour235]#[fg=colour240,bg=colour235] #I:#P #[fg=colour235,bg=colour233,nobold]" | |
# Right side of status bar | |
set -g status-right-bg colour233 | |
set -g status-right-fg colour243 | |
set -g status-right-length 150 | |
# set -g status-right "#[fg=colour235,bg=colour233]#[fg=colour240,bg=colour235] Internet: #{online_status} #[fg=colour235,bg=colour233]#[fg=colour240,bg=colour235] Batt(#{battery_percentage}): #{battery_remain} #[fg=colour240,bg=colour235]#[fg=colour233,bg=colour240] %d-%b-%y #[fg=colour245,bg=colour240]#[fg=colour232,bg=colour245,bold] #[fg=colour235,bg=colour233]#[fg=colour240,bg=colour235] %H:%M:%S #[fg=colour235,bg=colour233]#[fg=colour240,bg=colour235] IP: #(ipconfig getifaddr en0) #{prefix_highlight} " | |
set -g status-right "#[fg=colour235,bg=colour233]#[fg=colour240,bg=colour235] Internet: #{online_status} #[fg=colour240,bg=colour235]#[fg=colour233,bg=colour240] Batt(#{battery_percentage}): #{battery_remain} #[fg=colour235,bg=colour240]#[fg=colour240,bg=colour235] IP: #(ifconfig eth0 | grep -v inet6 | grep inet | awk '{print $2}') #[fg=colour240,bg=colour235]#[fg=colour233,bg=colour240] CPU: #{cpu_icon} #{cpu_percentage} #{prefix_highlight} " | |
# Window status | |
set -g window-status-format " #I:#W#F " | |
set -g window-status-current-format " #I:#W#F " | |
# Current window status | |
set -g window-status-current-bg colour130 | |
set -g window-status-current-fg colour232 | |
# Window with activity status | |
set -g window-status-activity-bg colour130 # fg and bg are flipped here due to | |
set -g window-status-activity-fg colour233 # a bug in tmux | |
# Window separator | |
set -g window-status-separator "" | |
# Window status alignment | |
set -g status-justify centre | |
# Pane border | |
set -g pane-border-bg default | |
set -g pane-border-fg colour238 | |
# Active pane border | |
set -g pane-active-border-bg default | |
set -g pane-active-border-fg colour130 | |
# Pane number indicator | |
set -g display-panes-colour colour233 | |
set -g display-panes-active-colour colour245 | |
# Clock mode | |
set -g clock-mode-colour colour130 | |
set -g clock-mode-style 24 | |
# Message | |
set -g message-bg colour130 | |
set -g message-fg black | |
# Command message | |
set -g message-command-bg colour233 | |
set -g message-command-fg black | |
# Mode | |
set -g mode-bg colour130 | |
set -g mode-fg colour232 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment