lxtmux/dracula.tmux

65 lines
1.7 KiB
Plaintext
Raw Normal View History

2020-03-14 02:19:05 +00:00
#!/usr/bin/env bash
2020-03-14 06:02:38 +00:00
# a tmux color scheme inspired by dracula
# author: Dane Williams
2020-03-14 20:36:46 +00:00
2020-03-14 08:17:53 +00:00
main()
{
# Dracula Color Pallette
white='#f8f8f2'
gray='#44475a'
dark_gray='#282a36'
light_purple='#bd93f9'
dark_purple='#6272a4'
2020-03-14 05:45:13 +00:00
cyan='#8be9fd'
green='#50fa7b'
orange='#ffb86c'
2020-03-14 23:57:01 +00:00
red='#ff5555'
2020-03-14 05:45:13 +00:00
pink='#ff79c6'
2020-03-14 23:57:01 +00:00
yellow='#f1fa8c'
2020-03-14 05:16:19 +00:00
2020-03-15 23:13:08 +00:00
# start weather script in background
2020-03-15 23:41:11 +00:00
#./sleep_weather.sh &
2020-03-15 23:13:08 +00:00
2020-03-14 20:36:46 +00:00
# set refresh interval
tmux set-option -g status-interval 5
2020-03-14 20:36:46 +00:00
2020-03-14 23:57:01 +00:00
# set clock
tmux set-option -g clock-mode-style 12
2020-03-14 20:36:46 +00:00
# set length
tmux set-option -g status-left-length 100
tmux set-option -g status-right-length 100
# pane border styling
2020-03-14 08:17:53 +00:00
tmux set-option -g pane-active-border-style "fg=${dark_purple}"
2020-03-14 20:36:46 +00:00
tmux set-option -g pane-border-style "fg=${gray}"
2020-03-14 08:17:53 +00:00
# message styling
tmux set-option -g message-style "bg=${gray},fg=${white}"
2020-03-14 08:17:53 +00:00
# status bar
tmux set-option -g status-style "bg=${gray},fg=${white}"
2020-03-14 23:57:01 +00:00
tmux set-option -g status-left "#[bg=${green},fg=${dark_gray}]#{?client_prefix,#[bg=${yellow}],} ☺ "
tmux set-option -g status-right "#[fg=${dark_gray},bg=${pink}] #(~/.tmux/plugins/tmux-dracula/battery.sh) "
2020-03-15 23:13:08 +00:00
tmux set-option -ga status-right "#[fg=${dark_gray},bg=${cyan}]#(~/Documents/GitRepos/tmux-dracula/network.sh) "
2020-03-15 04:46:56 +00:00
tmux set-option -ga status-right "#[fg=${dark_gray},bg=${orange}] #(cat ~/.tmux/plugins/tmux-dracula/weather.txt) "
2020-03-14 23:57:01 +00:00
tmux set-option -ga status-right "#[fg=${white},bg=${dark_purple}] %a %m/%d %I:%M %p #(date +%Z) "
2020-03-14 05:51:42 +00:00
2020-03-14 08:17:53 +00:00
# window tabs
tmux set-window-option -g window-status-current-format "#[fg=${white},bg=${dark_purple}] #I #W "
tmux set-window-option -g window-status-format "#[fg=${white}]#[bg=${gray}] #I #W "
2020-03-14 06:02:38 +00:00
2020-03-15 19:41:10 +00:00
# run weather update script in background
2020-03-15 23:41:11 +00:00
./sleep_weather.sh &
2020-03-15 18:24:52 +00:00
2020-03-14 02:19:05 +00:00
}
2020-03-14 04:40:25 +00:00
2020-03-14 08:17:53 +00:00
# run main function
2020-03-14 05:16:19 +00:00
main