version 1.0
This commit is contained in:
parent
72111e5bb0
commit
3183c4d566
1 changed files with 26 additions and 42 deletions
62
dracula.tmux
62
dracula.tmux
|
@ -3,56 +3,40 @@
|
||||||
# a tmux color scheme inspired by dracula
|
# a tmux color scheme inspired by dracula
|
||||||
# author: Dane Williams
|
# author: Dane Williams
|
||||||
|
|
||||||
main() {
|
main()
|
||||||
|
{
|
||||||
|
|
||||||
## Colors
|
# Dracula Color Pallette
|
||||||
white='#f8f8f2' #'colour255'
|
white='#f8f8f2'
|
||||||
gray='#44475a' #'colour236'
|
gray='#44475a'
|
||||||
dark_gray='#282a36' #'colour236'
|
dark_gray='#282a36'
|
||||||
yellow='#f1fa8c' #'colour215'
|
light_purple='#bd93f9'
|
||||||
light_purple='#bd93f9' #'colour141'
|
dark_purple='#6272a4'
|
||||||
dark_purple='#6272a4' #'colour61'
|
|
||||||
cyan='#8be9fd'
|
cyan='#8be9fd'
|
||||||
green='#50fa7b'
|
green='#50fa7b'
|
||||||
orange='#ffb86c'
|
orange='#ffb86c'
|
||||||
pink='#ff79c6'
|
pink='#ff79c6'
|
||||||
red='#ff555'
|
|
||||||
|
|
||||||
## Icons
|
# pane borders
|
||||||
left_sep=''
|
tmux set-option -g pane-border-style "fg=${gray}"
|
||||||
right_sep=''
|
tmux set-option -g pane-active-border-style "fg=${dark_purple}"
|
||||||
right_alt_sep=''
|
|
||||||
|
|
||||||
tmux set-option -g pane-border-style "fg=${dark_gray}"
|
# message styling
|
||||||
tmux set-option -g pane-active-border-style "fg=${pink}"
|
tmux set-option -g message-style "bg=${gray},fg=${white}"
|
||||||
|
|
||||||
tmux set-option -g status on
|
# status bar
|
||||||
#tmux set-option -g status-left-length 100
|
tmux set-option -g status-style "bg=${gray},fg=${white}"
|
||||||
#tmux set-option -g status-right-length 100
|
tmux set-option -g status-left "#[bg=${green},fg=${dark_gray}]#{?client_prefix,#[bg=${orange}],} ☺ "
|
||||||
#tmux set-option -g status-bg "${dark_gray}"
|
tmux set-option -g status-right "#[fg=${dark_gray},bg=${cyan}] tructus "
|
||||||
|
tmux set-option -ga status-right "#[fg=${dark_gray},bg=${pink}] gingel "
|
||||||
|
tmux set-option -ga status-right "#[fg=${white},bg=${dark_purple}] %a %H:%M #(date +%Z) %m/%d/%Y "
|
||||||
|
|
||||||
# tmux set-option -g message-bg "${gray}"
|
# window tabs
|
||||||
# tmux set-option -g message-fg "${white}"
|
tmux set-window-option -g window-status-current-format "#[fg=${white},bg=${dark_purple}] #I #W "
|
||||||
tmux set-option -g message-style "bg=${gray},fg=${cyan}"
|
tmux set-window-option -g window-status-format "#[fg=${white}]#[bg=${gray}] #I #W "
|
||||||
# tmux set-option -g message-command-bg "${gray}"
|
|
||||||
# tmux set-option -g message-command-fg "${white}"
|
|
||||||
|
|
||||||
tmux set-option -g status-style "bg=${gray},fg=${light_purple}"
|
|
||||||
tmux set-option -g status-interval 30
|
|
||||||
|
|
||||||
#tmux set-option -g status-left " #I #[fg=${dark_gray},reverse]${right_sep} "
|
|
||||||
#tmux set-option -g status-left-style "fg=${white},bg=${dark_purple},bold"
|
|
||||||
#tmux set-option -g status-right "${left_sep}#[bg=${black},reverse] %Y-%m-%d %H:%M "
|
|
||||||
#tmux set-option -g status-right-style "fg=${light_purple},bg=${dark_gray}"
|
|
||||||
|
|
||||||
tmux set-window-option -g window-status-activity-style "fg=${white},bg=${gray}"
|
|
||||||
tmux set-window-option -g window-status-separator ''
|
|
||||||
tmux set-window-option -g window-status-format ' #I #W '
|
|
||||||
tmux set-window-option -g window-status-style "fg=${yellow},bg=${dark_gray}"
|
|
||||||
tmux set-window-option -g window-status-current-format \
|
|
||||||
"${right_sep}#[fg=${black}] #I ${right_alt_sep} #W #[fg=${dark_gray},reverse]${right_sep}"
|
|
||||||
tmux set-window-option -g window-status-current-style "fg=${dark_gray},bg=${light_purple}"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# run main function
|
||||||
main
|
main
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue