Add tmux color schemes
This commit is contained in:
parent
bff26a03ab
commit
3d686f72e4
5 changed files with 77 additions and 10 deletions
18
bin/bin/cs
18
bin/bin/cs
|
@ -17,11 +17,15 @@ cat $alacritty/alacritty-base.yml $alacritty/themes/$new_color.yml >> $alacritty
|
||||||
|
|
||||||
echo $new_color > $color_file
|
echo $new_color > $color_file
|
||||||
|
|
||||||
for pane_info in $(tmux list-panes -a -F '#{pane_id}-#{pane_current_command}'); do
|
if [[ $TMUX ]]; then
|
||||||
IFS=- read pane cmd <<< "$pane_info"
|
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
|
if [[ $cmd == "vim" ]]; then
|
||||||
echo "sending to $pane"
|
echo "sending to $pane"
|
||||||
tmux send-keys -t $pane ":call ChangeBackground()" ENTER
|
tmux send-keys -t $pane ":call ChangeBackground()" ENTER
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
tmux source-file $HOME/.tmux/${new_color}.conf
|
||||||
|
fi
|
||||||
|
|
|
@ -20,7 +20,6 @@ bind q confirm kill-window
|
||||||
# clear history
|
# clear history
|
||||||
bind -n C-g clear-history
|
bind -n C-g clear-history
|
||||||
|
|
||||||
|
|
||||||
# 0 is way over there
|
# 0 is way over there
|
||||||
set-option -g base-index 1
|
set-option -g base-index 1
|
||||||
setw -g pane-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}"
|
unbind c; bind c new-window -c "#{pane_current_path}"
|
||||||
bind s split-window -v -c "#{pane_current_path}"
|
bind s split-window -v -c "#{pane_current_path}"
|
||||||
bind v split-window -h -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
29
tmux/.tmux/dark.conf
Normal 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
29
tmux/.tmux/light.conf
Normal 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
5
tmux/.tmux/startup
Executable file
|
@ -0,0 +1,5 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
startup_color=$(cat $HOME/.config/atomaka/color.yml)
|
||||||
|
|
||||||
|
tmux source-file $HOME/.tmux/$startup_color.conf
|
Loading…
Reference in a new issue