diff --git a/pactest.conf b/pactest.conf index a032ac8..5486458 100644 --- a/pactest.conf +++ b/pactest.conf @@ -29,7 +29,7 @@ Include = /etc/pacman.d/mirrorlist Include = /etc/pacman.d/mirrorlist [arcanisrepo] -Server = ftp://repo.arcanis.me/repo/$arch +Server = http://repo.arcanis.me/$arch [multilib-staging] Include = /etc/pacman.d/mirrorlist diff --git a/zsh/prompt.zsh b/zsh/prompt.zsh index 74c5cbd..a341c5a 100644 --- a/zsh/prompt.zsh +++ b/zsh/prompt.zsh @@ -17,32 +17,11 @@ else %{$fg_bold[white]%}]$ %{$reset_color%}" fi precmd() { - # battery charge - function batcharge { - local _bat_perc=0 - local _num=0 - local _bat - for _bat in /sys/class/power_supply/BAT*; do - let "_bat_perc += $(cat ${_bat}/capacity)" - let "_num += 1" - done - _bat_perc=$((${_bat_perc}/${_num})) - local _col - if [[ ${_bat_perc} -lt 15 ]]; then - _col="%{$fg_bold[red]%}" - elif [[ ${_bat_perc} -lt 50 ]]; then - _col="%{$fg_bold[yellow]%}" - else - _col="%{$fg_bold[green]%}" - fi - echo "%{$fg_bold[white]%}["${_col}${_bat_perc}"%{$fg_bold[white]%}%%]%{$reset_color%}" - } # last command returncode="%(?.%{$fg[green]%}.%{$fg[red]%})%?%{$resetcolor%}" RPROMPT="%{$fg_bold[white]%}[%{$reset_color%}\ %{$fg_bold[cyan]%}%T%{$reset_color%}\ %{$fg_bold[white]%}]%{$reset_color%}"\ -$(batcharge)\ "%{$fg_bold[white]%}[%{$reset_color%}"\ ${returncode}\ "%{$fg_bold[white]%}]%{$reset_color%}"