reorganized files
This commit is contained in:
parent
4b8413f359
commit
b1df587d6e
8 changed files with 71 additions and 61 deletions
1
data/weather.txt
Normal file
1
data/weather.txt
Normal file
|
@ -0,0 +1 @@
|
|||
☁ 45°F Pleasanton, CA
|
63
dracula.tmux
63
dracula.tmux
|
@ -1,64 +1,11 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# a tmux color scheme inspired by dracula
|
||||
# author: Dane Williams
|
||||
# Author: Dane Williams
|
||||
# a theme for tmux inspired by dracula
|
||||
|
||||
# source and run dracula theme
|
||||
|
||||
main()
|
||||
{
|
||||
current_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
|
||||
# Dracula Color Pallette
|
||||
white='#f8f8f2'
|
||||
gray='#44475a'
|
||||
dark_gray='#282a36'
|
||||
light_purple='#bd93f9'
|
||||
dark_purple='#6272a4'
|
||||
cyan='#8be9fd'
|
||||
green='#50fa7b'
|
||||
orange='#ffb86c'
|
||||
red='#ff5555'
|
||||
pink='#ff79c6'
|
||||
yellow='#f1fa8c'
|
||||
|
||||
# start weather script in background
|
||||
./sleep_weather.sh &
|
||||
|
||||
# set refresh interval
|
||||
tmux set-option -g status-interval 5
|
||||
|
||||
# set clock
|
||||
tmux set-option -g clock-mode-style 12
|
||||
|
||||
# set length
|
||||
tmux set-option -g status-left-length 100
|
||||
tmux set-option -g status-right-length 100
|
||||
|
||||
# pane border styling
|
||||
tmux set-option -g pane-active-border-style "fg=${dark_purple}"
|
||||
tmux set-option -g pane-border-style "fg=${gray}"
|
||||
|
||||
# message styling
|
||||
tmux set-option -g message-style "bg=${gray},fg=${white}"
|
||||
|
||||
# status bar
|
||||
tmux set-option -g status-style "bg=${gray},fg=${white}"
|
||||
|
||||
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) "
|
||||
tmux set-option -ga status-right "#[fg=${dark_gray},bg=${cyan}]#(~/.tmux/plugins/tmux-dracula/network.sh) "
|
||||
tmux set-option -ga status-right "#[fg=${dark_gray},bg=${orange}] #(cat ~/.tmux/plugins/tmux-dracula/weather.txt) "
|
||||
tmux set-option -ga status-right "#[fg=${white},bg=${dark_purple}] %a %m/%d %I:%M %p #(date +%Z) "
|
||||
|
||||
# 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 "
|
||||
|
||||
# run weather update script in background
|
||||
#./sleep_weather.sh &
|
||||
|
||||
}
|
||||
|
||||
# run main function
|
||||
main
|
||||
$current_dir/scripts/dracula.sh
|
||||
|
||||
|
|
60
scripts/dracula.sh
Executable file
60
scripts/dracula.sh
Executable file
|
@ -0,0 +1,60 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# a tmux color scheme inspired by dracula
|
||||
# author: Dane Williams
|
||||
|
||||
main()
|
||||
{
|
||||
# set current directory variable
|
||||
current_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
|
||||
# Dracula Color Pallette
|
||||
white='#f8f8f2'
|
||||
gray='#44475a'
|
||||
dark_gray='#282a36'
|
||||
light_purple='#bd93f9'
|
||||
dark_purple='#6272a4'
|
||||
cyan='#8be9fd'
|
||||
green='#50fa7b'
|
||||
orange='#ffb86c'
|
||||
red='#ff5555'
|
||||
pink='#ff79c6'
|
||||
yellow='#f1fa8c'
|
||||
|
||||
# start weather script in background
|
||||
$current_dir/sleep_weather.sh &
|
||||
|
||||
# set refresh interval
|
||||
tmux set-option -g status-interval 5
|
||||
|
||||
# set clock
|
||||
tmux set-option -g clock-mode-style 12
|
||||
|
||||
# set length
|
||||
tmux set-option -g status-left-length 100
|
||||
tmux set-option -g status-right-length 100
|
||||
|
||||
# pane border styling
|
||||
tmux set-option -g pane-active-border-style "fg=${dark_purple}"
|
||||
tmux set-option -g pane-border-style "fg=${gray}"
|
||||
|
||||
# message styling
|
||||
tmux set-option -g message-style "bg=${gray},fg=${white}"
|
||||
|
||||
# status bar
|
||||
tmux set-option -g status-style "bg=${gray},fg=${white}"
|
||||
|
||||
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}] #($current_dir/battery.sh) "
|
||||
tmux set-option -ga status-right "#[fg=${dark_gray},bg=${cyan}]#($current_dir/network.sh) "
|
||||
tmux set-option -ga status-right "#[fg=${dark_gray},bg=${orange}] #(cat $current_dir/../data/weather.txt) "
|
||||
tmux set-option -ga status-right "#[fg=${white},bg=${dark_purple}] %a %m/%d %I:%M %p #(date +%Z) "
|
||||
|
||||
# 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 "
|
||||
}
|
||||
|
||||
# run main function
|
||||
main
|
|
@ -4,10 +4,13 @@
|
|||
|
||||
main()
|
||||
{
|
||||
./weather.sh > ~/.tmux/plugins/tmux-dracula/weather.txt
|
||||
current_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
|
||||
$current_dir/weather.sh > $current_dir/../data/weather.txt
|
||||
|
||||
while tmux has-session &> /dev/null
|
||||
do
|
||||
./weather.sh > ~/.tmux/plugins/tmux-dracula/weather.txt
|
||||
$current_dir/weather.sh > $current_dir/../data/weather.txt
|
||||
if tmux has-session &> /dev/null
|
||||
then
|
||||
sleep 1000
|
|
@ -1 +0,0 @@
|
|||
Loading Weather...
|
Loading…
Reference in a new issue