2012-01-11 21:26:00 +01:00
|
|
|
# -*- mode: shell-script; eval: (git-auto-commit-mode 1) -*-
|
2012-01-06 16:02:15 +01:00
|
|
|
|
|
|
|
local pac_cnt=$(get_cnt updates)
|
|
|
|
local aur_cnt=$(get_cnt aur)
|
|
|
|
local hostname=$(hostname | cut -d . -f 1)
|
|
|
|
|
|
|
|
if [ $pac_cnt -gt 0 -o $aur_cnt -gt 0 ]; then
|
|
|
|
printf "%s%d%s/%s%d%s:" \
|
|
|
|
"%{${fg[cyan]}%}" $pac_cnt "%{${fg[default]}%}" \
|
|
|
|
"%{${fg[cyan]}%}" $aur_cnt "%{${fg[default]}%}"
|
|
|
|
fi
|
|
|
|
|
2012-02-11 10:43:19 +01:00
|
|
|
printf '%s%s%s:%s%s%s%s ' \
|
2012-01-06 16:02:15 +01:00
|
|
|
"%{${fg[magenta]}%}" $hostname "%{${fg[default]}%}" \
|
2012-02-11 10:40:14 +01:00
|
|
|
"%(?.%{${fg[green]}%}.%{${fg[red]}%})" "%~" "%{${fg[default]}%}"
|
2012-05-17 16:21:23 +02:00
|
|
|
|
2012-05-17 21:14:27 +02:00
|
|
|
printf "$(/home/slash/code/projects/baps1/src/baps1)"
|