summaryrefslogtreecommitdiffstats
path: root/.zsh/functions/prompt
diff options
context:
space:
mode:
Diffstat (limited to '.zsh/functions/prompt')
-rw-r--r--.zsh/functions/prompt15
1 files changed, 0 insertions, 15 deletions
diff --git a/.zsh/functions/prompt b/.zsh/functions/prompt
deleted file mode 100644
index 6fe927b..0000000
--- a/.zsh/functions/prompt
+++ /dev/null
@@ -1,15 +0,0 @@
-# -*- mode: shell-script; eval: (git-auto-commit-mode 1) -*-
-
-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
-
-printf '%s%s%s:%s%s%s%s ' \
- "%{${fg[magenta]}%}" $hostname "%{${fg[default]}%}" \
- "%(?.%{${fg[green]}%}.%{${fg[red]}%})" "%~" "%{${fg[default]}%}"