Add tmux color schemes

This commit is contained in:
Andrew Tomaka 2021-11-06 22:44:35 -04:00
parent bff26a03ab
commit 3d686f72e4
Signed by: atomaka
GPG key ID: 61209BF70A5B18BE
5 changed files with 77 additions and 10 deletions

View file

@ -17,11 +17,15 @@ cat $alacritty/alacritty-base.yml $alacritty/themes/$new_color.yml >> $alacritty
echo $new_color > $color_file
for pane_info in $(tmux list-panes -a -F '#{pane_id}-#{pane_current_command}'); do
IFS=- read pane cmd <<< "$pane_info"
if [[ $TMUX ]]; then
for pane_info in $(tmux list-panes -a -F '#{pane_id}-#{pane_current_command}'); do
IFS=- read pane cmd <<< "$pane_info"
if [[ $cmd == "vim" ]]; then
echo "sending to $pane"
tmux send-keys -t $pane ":call ChangeBackground()" ENTER
fi
done
if [[ $cmd == "vim" ]]; then
echo "sending to $pane"
tmux send-keys -t $pane ":call ChangeBackground()" ENTER
fi
done
tmux source-file $HOME/.tmux/${new_color}.conf
fi

View file

@ -20,7 +20,6 @@ bind q confirm kill-window
# clear history
bind -n C-g clear-history
# 0 is way over there
set-option -g base-index 1
setw -g pane-base-index 1
@ -64,5 +63,6 @@ set-option -g status-right '%Y-%m-%d @ %k:%M'
unbind c; bind c new-window -c "#{pane_current_path}"
bind s split-window -v -c "#{pane_current_path}"
bind v split-window -h -c "#{pane_current_path}"
set -g window-status-current-style bg=white,fg=black
set -g status-style fg=white,bg=colour236
# load current scheme
run-shell "bash ~/.tmux/startup"

29
tmux/.tmux/dark.conf Normal file
View file

@ -0,0 +1,29 @@
#### COLOUR (Solarized dark)
# default statusbar colors
set-option -g status-style fg=yellow,bg=black #yellow and base02
# default window title colors
set-window-option -g window-status-style fg=brightblue,bg=default #base0 and default
#set-window-option -g window-status-style dim
# active window title colors
set-window-option -g window-status-current-style fg=brightred,bg=default #orange and default
#set-window-option -g window-status-current-style bright
# pane border
set-option -g pane-border-style fg=black #base02
set-option -g pane-active-border-style fg=brightgreen #base01
# message text
set-option -g message-style fg=brightred,bg=black #orange and base01
# pane number display
set-option -g display-panes-active-colour blue #blue
set-option -g display-panes-colour brightred #orange
# clock
set-window-option -g clock-mode-colour green #green
# bell
set-window-option -g window-status-bell-style fg=black,bg=red #base02, red

29
tmux/.tmux/light.conf Normal file
View file

@ -0,0 +1,29 @@
#### COLOUR (Solarized light)
# default statusbar colors
set-option -g status-style fg=yellow,bg=white #yellow and base2
# default window title colors
set-window-option -g window-status-style fg=brightyellow,bg=default #base0 and default
#set-window-option -g window-status-style dim
# active window title colors
set-window-option -g window-status-current-style fg=brightred,bg=default #orange and default
#set-window-option -g window-status-current-style bright
# pane border
set-option -g pane-border-style fg=white #base2
set-option -g pane-active-border-style fg=brightcyan #base1
# message text
set-option -g message-style fg=brightred,bg=white #orange and base2
# pane number display
set-option -g display-panes-active-colour blue #blue
set-option -g display-panes-colour brightred #orange
# clock
set-window-option -g clock-mode-colour green #green
# bell
set-window-option -g window-status-bell-style fg=white,bg=red #base2, red

5
tmux/.tmux/startup Executable file
View file

@ -0,0 +1,5 @@
#!/bin/bash
startup_color=$(cat $HOME/.config/atomaka/color.yml)
tmux source-file $HOME/.tmux/$startup_color.conf