Merge pull request #22 from uttarayan21/powerline

Added powerline symbols
This commit is contained in:
Dane Williams 2020-05-14 23:44:07 -07:00 committed by GitHub
commit b4869b3dc0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 52 additions and 19 deletions

View file

@ -1,11 +1,13 @@
#!/usr/bin/env bash
BAT=$(ls /sys/class/power_supply/BAT* | head -1)
battery_percent()
{
# Check OS
case $(uname -s) in
Linux)
cat /sys/class/power_supply/BAT0/capacity
cat $BAT/capacity
;;
Darwin)
@ -26,7 +28,7 @@ battery_status()
# Check OS
case $(uname -s) in
Linux)
status=$(cat /sys/class/power_supply/BAT0/status)
status=$(cat $BAT/status)
;;
Darwin)

View file

@ -1,5 +1,4 @@
#!/usr/bin/env bash
get_tmux_option() {
local option=$1
local default_value=$2
@ -21,7 +20,7 @@ main()
show_network=$(get_tmux_option "@dracula-show-network" true)
show_weather=$(get_tmux_option "@dracula-show-weather" true)
show_fahrenheit=$(get_tmux_option "@dracula-show-fahrenheit" true)
show_powerline=$(get_tmux_option "@dracula-show-powerline" true)
# Dracula Color Pallette
white='#f8f8f2'
gray='#44475a'
@ -35,6 +34,10 @@ main()
pink='#ff79c6'
yellow='#f1fa8c'
if $show_powerline; then
right_sep=''
left_sep=''
fi
# start weather script in background
if $show_weather; then
$current_dir/sleep_weather.sh $show_fahrenheit &
@ -60,6 +63,31 @@ main()
# status bar
tmux set-option -g status-style "bg=${gray},fg=${white}"
if $show_powerline; then
tmux set-option -g status-left "#[bg=${green},fg=${dark_gray}]#{?client_prefix,#[bg=${yellow}],} ☺ #[fg=${green},bg=${gray}]#{?client_prefix,#[fg=${yellow}],}${left_sep} "
tmux set-option -g status-right ""
powerbg=${gray}
if $show_battery; then
tmux set-option -g status-right "#[fg=${pink},bg=${powerbg},nobold,nounderscore,noitalics] ${right_sep}#[fg=${dark_gray},bg=${pink}] #($current_dir/battery.sh) "
powerbg=${pink}
fi
if $show_network; then
tmux set-option -ga status-right "#[fg=${cyan},bg=${powerbg},nobold,nounderscore,noitalics] ${right_sep}#[fg=${dark_gray},bg=${cyan}]#($current_dir/network.sh) "
powerbg=${cyan}
fi
if $show_weather; then
tmux set-option -ga status-right "#[fg=${orange},bg=${powerbg},nobold,nounderscore,noitalics] ${right_sep}#[fg=${dark_gray},bg=${orange}] #(cat $current_dir/../data/weather.txt) "
powerbg=${orange}
fi
tmux set-option -ga status-right "#[fg=${dark_purple},bg=${powerbg},nobold,nounderscore,noitalics] ${right_sep}#[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=${gray},bg=${dark_purple}]${left_sep}#[fg=${white},bg=${dark_purple}] #I #W #[fg=${dark_purple},bg=${gray}]${left_sep}"
else
tmux set-option -g status-left "#[bg=${green},fg=${dark_gray}]#{?client_prefix,#[bg=${yellow}],} ☺ "
tmux set-option -g status-right ""
@ -80,6 +108,9 @@ main()
# window tabs
tmux set-window-option -g window-status-current-format "#[fg=${white},bg=${dark_purple}] #I #W "
fi
tmux set-window-option -g window-status-format "#[fg=${white}]#[bg=${gray}] #I #W "
}