Added powerline symbols

Changed it so that battery can be read from BAT1 and BAT0
This commit is contained in:
Uttarayan Mondal 2020-05-11 23:38:13 +05:30
parent 05be73462a
commit a8ab770bec
2 changed files with 18 additions and 11 deletions

View file

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

View file

@ -1,5 +1,4 @@
#!/usr/bin/env bash #!/usr/bin/env bash
get_tmux_option() { get_tmux_option() {
local option=$1 local option=$1
local default_value=$2 local default_value=$2
@ -21,7 +20,8 @@ main()
show_network=$(get_tmux_option "@dracula-show-network" true) show_network=$(get_tmux_option "@dracula-show-network" true)
show_weather=$(get_tmux_option "@dracula-show-weather" true) show_weather=$(get_tmux_option "@dracula-show-weather" true)
show_fahrenheit=$(get_tmux_option "@dracula-show-fahrenheit" true) show_fahrenheit=$(get_tmux_option "@dracula-show-fahrenheit" true)
right_sep=''
left_sep=''
# Dracula Color Pallette # Dracula Color Pallette
white='#f8f8f2' white='#f8f8f2'
gray='#44475a' gray='#44475a'
@ -60,26 +60,31 @@ main()
# status bar # status bar
tmux set-option -g status-style "bg=${gray},fg=${white}" 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-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 "" tmux set-option -g status-right ""
powerbg=${gray}
if $show_battery; then if $show_battery; then
tmux set-option -g status-right "#[fg=${dark_gray},bg=${pink}] #($current_dir/battery.sh) " 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 fi
if $show_network; then if $show_network; then
tmux set-option -ga status-right "#[fg=${dark_gray},bg=${cyan}]#($current_dir/network.sh) " 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 fi
if $show_weather; then if $show_weather; then
tmux set-option -ga status-right "#[fg=${dark_gray},bg=${orange}] #(cat $current_dir/../data/weather.txt) " 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 fi
tmux set-option -ga status-right "#[fg=${white},bg=${dark_purple}] %a %m/%d %I:%M %p #(date +%Z) " 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 # 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-current-format "#[bg=${dark_purple},fg=${gray}]${left_sep}#[fg=${white},bg=${dark_purple}] #I #W #[bg=${dark_purple},fg=${gray}]${right_sep}"
tmux set-window-option -g window-status-format "#[fg=${white}]#[bg=${gray}] #I #W " tmux set-window-option -g window-status-format "#[fg=${white}]#[bg=${gray}] #I #W "
} }