Added option to toggle between smiley and session name

as the left icons also restructured the linux battery command to make it
work on acpi as well as /sys/class/power_supply/BAT0 (and BAT1)
This commit is contained in:
Uttarayan Mondal 2020-05-21 21:02:20 +05:30
parent 52022a22a3
commit 92d00a228a
2 changed files with 42 additions and 6 deletions

View file

@ -1,13 +1,39 @@
#!/usr/bin/env bash #!/usr/bin/env bash
linux_acpi() {
arg=$1
BAT=$(ls -d /sys/class/power_supply/BAT* | head -1)
if [ ! -x "$(which acpi 2> /dev/null)" ];then
case "$arg" in
status)
cat $BAT/status
;;
BAT=$(ls /sys/class/power_supply/BAT* | head -1) percent)
cat $BAT/capacity
;;
*)
;;
esac
else
case "$arg" in
status)
acpi | cut -d: -f2- | cut -d, -f1 | tr -d ' '
;;
percent)
acpi | cut -d: -f2- | cut -d, -f2 | tr -d '% '
;;
*)
;;
esac
fi
}
battery_percent() battery_percent()
{ {
# Check OS # Check OS
case $(uname -s) in case $(uname -s) in
Linux) Linux)
cat $BAT/capacity linux_acpi percent
;; ;;
Darwin) Darwin)
@ -28,7 +54,7 @@ battery_status()
# Check OS # Check OS
case $(uname -s) in case $(uname -s) in
Linux) Linux)
status=$(cat $BAT/status) status=$(linux_acpi status)
;; ;;
Darwin) Darwin)
@ -43,7 +69,7 @@ battery_status()
;; ;;
esac esac
if [ $status = 'discharging' ] || [ $status = 'Discharging' ]; then if [ "$status" = "discharging" ] || [ "$status" = "Discharging" ]; then
echo '' echo ''
else else
echo 'AC ' echo 'AC '

View file

@ -21,6 +21,7 @@ main()
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)
show_powerline=$(get_tmux_option "@dracula-show-powerline" false) show_powerline=$(get_tmux_option "@dracula-show-powerline" false)
show_left_icon=$(get_tmux_option "@dracula-show-left-icon" smiley)
# Dracula Color Pallette # Dracula Color Pallette
white='#f8f8f2' white='#f8f8f2'
@ -35,6 +36,15 @@ main()
pink='#ff79c6' pink='#ff79c6'
yellow='#f1fa8c' yellow='#f1fa8c'
case $show_left_icon in
smiley)
left_icon="☺";;
session)
left_icon="#W";;
*)
left_icon=$show_left_icon;;
esac
if $show_powerline; then if $show_powerline; then
right_sep='' right_sep=''
left_sep='' left_sep=''
@ -66,7 +76,7 @@ main()
if $show_powerline; then 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-left "#[bg=${green},fg=${dark_gray}]#{?client_prefix,#[bg=${yellow}],} ${left_icon} #[fg=${green},bg=${gray}]#{?client_prefix,#[fg=${yellow}],}${left_sep}"
tmux set-option -g status-right "" tmux set-option -g status-right ""
powerbg=${gray} powerbg=${gray}
@ -89,7 +99,7 @@ main()
# window tabs # 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}" 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 else
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}],} ${left_icon}"
tmux set-option -g status-right "" tmux set-option -g status-right ""