diff --git a/scripts/battery.sh b/scripts/battery.sh index 30b3b3e..d43088a 100755 --- a/scripts/battery.sh +++ b/scripts/battery.sh @@ -1,13 +1,39 @@ #!/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() { # Check OS case $(uname -s) in Linux) - cat $BAT/capacity + linux_acpi percent ;; Darwin) @@ -28,7 +54,7 @@ battery_status() # Check OS case $(uname -s) in Linux) - status=$(cat $BAT/status) + status=$(linux_acpi status) ;; Darwin) @@ -43,7 +69,7 @@ battery_status() ;; esac - if [ $status = 'discharging' ] || [ $status = 'Discharging' ]; then + if [ "$status" = "discharging" ] || [ "$status" = "Discharging" ]; then echo '' else echo 'AC ' diff --git a/scripts/dracula.sh b/scripts/dracula.sh index 99457e4..8bfbcba 100755 --- a/scripts/dracula.sh +++ b/scripts/dracula.sh @@ -21,6 +21,7 @@ main() 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" false) + show_left_icon=$(get_tmux_option "@dracula-show-left-icon" smiley) # Dracula Color Pallette white='#f8f8f2' @@ -35,6 +36,15 @@ main() pink='#ff79c6' yellow='#f1fa8c' + case $show_left_icon in + smiley) + left_icon="☺";; + session) + left_icon="#W";; + *) + left_icon=$show_left_icon;; + esac + if $show_powerline; then right_sep='' left_sep='' @@ -66,7 +76,7 @@ main() 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 "" powerbg=${gray} @@ -89,7 +99,7 @@ main() # 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-left "#[bg=${green},fg=${dark_gray}]#{?client_prefix,#[bg=${yellow}],} ${left_icon}" tmux set-option -g status-right ""