From 140796d7db6f3c755ac3103fc5d1df9f24cd752c Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Wed, 2 May 2012 03:52:41 +0100 Subject: [PATCH] Update existing tmux themes and add three new ones --- tmux/themes/powerline-block-blue.tmuxtheme | 63 +++++++++++++++++++ tmux/themes/powerline-block-green.tmuxtheme | 63 +++++++++++++++++++ tmux/themes/powerline-block-red.tmuxtheme | 63 +++++++++++++++++++ tmux/themes/powerline-default-green.tmuxtheme | 1 - tmux/themes/powerline-default-red.tmuxtheme | 2 +- tmux/themes/powerline-double-blue.tmuxtheme | 4 +- tmux/themes/powerline-double-green.tmuxtheme | 1 - tmux/themes/powerline-double-red.tmuxtheme | 2 +- 8 files changed, 193 insertions(+), 6 deletions(-) create mode 100644 tmux/themes/powerline-block-blue.tmuxtheme create mode 100644 tmux/themes/powerline-block-green.tmuxtheme create mode 100644 tmux/themes/powerline-block-red.tmuxtheme diff --git a/tmux/themes/powerline-block-blue.tmuxtheme b/tmux/themes/powerline-block-blue.tmuxtheme new file mode 100644 index 0000000..fff3175 --- /dev/null +++ b/tmux/themes/powerline-block-blue.tmuxtheme @@ -0,0 +1,63 @@ +# 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=colour233,bg=colour24,bold] #S #[fg=colour24,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] %H:%M:%S #[fg=colour240,bg=colour235]⮂#[fg=colour233,bg=colour240] %d-%b-%y #[fg=colour245,bg=colour240]⮂#[fg=colour235,bg=colour245,bold] #H " + +# 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 colour24 +set -g window-status-current-fg colour233 + +# Window with activity status +set -g window-status-activity-bg colour31 # 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 colour234 + +# Active pane border +set -g pane-active-border-bg default +set -g pane-active-border-fg colour24 + +# Pane number indicator +set -g display-panes-colour colour233 +set -g display-panes-active-colour colour245 + +# Clock mode +set -g clock-mode-colour colour24 + +# Message +set -g message-fg black +set -g message-bg colour24 + +# Command message +set -g message-command-fg black +set -g message-command-bg colour233 + +# Mode +set -g mode-bg colour24 +set -g mode-fg colour250 diff --git a/tmux/themes/powerline-block-green.tmuxtheme b/tmux/themes/powerline-block-green.tmuxtheme new file mode 100644 index 0000000..219e1e3 --- /dev/null +++ b/tmux/themes/powerline-block-green.tmuxtheme @@ -0,0 +1,63 @@ +# 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=colour233,bg=colour100,bold] #S #[fg=colour100,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] %H:%M:%S #[fg=colour240,bg=colour235]⮂#[fg=colour233,bg=colour240] %d-%b-%y #[fg=colour245,bg=colour240]⮂#[fg=colour235,bg=colour245,bold] #H " + +# 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 colour100 +set -g window-status-current-fg colour233 + +# Window with activity status +set -g window-status-activity-bg colour107 # 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 colour234 + +# Active pane border +set -g pane-active-border-bg default +set -g pane-active-border-fg colour100 + +# Pane number indicator +set -g display-panes-colour colour233 +set -g display-panes-active-colour colour245 + +# Clock mode +set -g clock-mode-colour colour100 + +# Message +set -g message-fg black +set -g message-bg colour100 + +# Command message +set -g message-command-fg black +set -g message-command-bg colour233 + +# Mode +set -g mode-bg colour100 +set -g mode-fg colour235 diff --git a/tmux/themes/powerline-block-red.tmuxtheme b/tmux/themes/powerline-block-red.tmuxtheme new file mode 100644 index 0000000..baf0ab6 --- /dev/null +++ b/tmux/themes/powerline-block-red.tmuxtheme @@ -0,0 +1,63 @@ +# 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=colour16,bg=colour88,bold] #S #[fg=colour88,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] %H:%M:%S #[fg=colour240,bg=colour235]⮂#[fg=colour233,bg=colour240] %d-%b-%y #[fg=colour245,bg=colour240]⮂#[fg=colour235,bg=colour245,bold] #H " + +# 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 colour124 +set -g window-status-current-fg colour16 + +# Window with activity status +set -g window-status-activity-bg colour88 # 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 colour234 + +# Active pane border +set -g pane-active-border-bg default +set -g pane-active-border-fg colour88 + +# Pane number indicator +set -g display-panes-colour colour233 +set -g display-panes-active-colour colour245 + +# Clock mode +set -g clock-mode-colour colour88 + +# Message +set -g message-fg black +set -g message-bg colour88 + +# Command message +set -g message-command-fg black +set -g message-command-bg colour88 + +# Mode +set -g mode-bg colour124 +set -g mode-fg colour232 diff --git a/tmux/themes/powerline-default-green.tmuxtheme b/tmux/themes/powerline-default-green.tmuxtheme index 47fde95..fd552ed 100644 --- a/tmux/themes/powerline-default-green.tmuxtheme +++ b/tmux/themes/powerline-default-green.tmuxtheme @@ -19,7 +19,6 @@ set -g status-right "#[fg=colour235,bg=colour233]⮂#[fg=colour240,bg=colour235] # Window status set -g window-status-format " #I:#W#F " -# set -g window-status-current-format " #I:#W#F " set -g window-status-current-format "#[fg=colour233,bg=black]⮀#[fg=colour190,nobold] #I:#W#F #[fg=colour233,bg=black,nobold]⮂" # Current window status diff --git a/tmux/themes/powerline-default-red.tmuxtheme b/tmux/themes/powerline-default-red.tmuxtheme index 2f30b93..d1b49f9 100644 --- a/tmux/themes/powerline-default-red.tmuxtheme +++ b/tmux/themes/powerline-default-red.tmuxtheme @@ -26,7 +26,7 @@ set -g window-status-current-bg colour88 set -g window-status-current-fg colour16 # Window with activity status -set -g window-status-activity-bg colour88 # fg and bg are flipped here due to +set -g window-status-activity-bg colour88 # fg and bg are flipped here due to set -g window-status-activity-fg colour233 # a bug in tmux # Window separator diff --git a/tmux/themes/powerline-double-blue.tmuxtheme b/tmux/themes/powerline-double-blue.tmuxtheme index 92aa24d..4c74991 100644 --- a/tmux/themes/powerline-double-blue.tmuxtheme +++ b/tmux/themes/powerline-double-blue.tmuxtheme @@ -22,8 +22,8 @@ set -g window-status-format " #I:#W#F " set -g window-status-current-format "#[fg=colour233,bg=black]⮀#[fg=colour33,nobold] #I:#W#F #[fg=colour233,bg=black,nobold]⮂" # Current window status -set -g window-status-current-bg colour100 -set -g window-status-current-fg colour235 +set -g window-status-current-bg colour24 +set -g window-status-current-fg colour233 # Window with activity status set -g window-status-activity-bg colour31 # fg and bg are flipped here due to diff --git a/tmux/themes/powerline-double-green.tmuxtheme b/tmux/themes/powerline-double-green.tmuxtheme index c7df13a..249b962 100644 --- a/tmux/themes/powerline-double-green.tmuxtheme +++ b/tmux/themes/powerline-double-green.tmuxtheme @@ -19,7 +19,6 @@ set -g status-right "#[fg=colour235,bg=colour233]⮂#[fg=colour240,bg=colour235] # Window status set -g window-status-format " #I:#W#F " -# set -g window-status-current-format " #I:#W#F " set -g window-status-current-format "#[fg=colour233,bg=black]⮀#[fg=colour190,nobold] #I:#W#F #[fg=colour233,bg=black,nobold]⮂" # Current window status diff --git a/tmux/themes/powerline-double-red.tmuxtheme b/tmux/themes/powerline-double-red.tmuxtheme index e54225b..7741073 100644 --- a/tmux/themes/powerline-double-red.tmuxtheme +++ b/tmux/themes/powerline-double-red.tmuxtheme @@ -26,7 +26,7 @@ set -g window-status-current-bg colour88 set -g window-status-current-fg colour16 # Window with activity status -set -g window-status-activity-bg colour88 # fg and bg are flipped here due to +set -g window-status-activity-bg colour88 # fg and bg are flipped here due to set -g window-status-activity-fg colour233 # a bug in tmux # Window separator