summaryrefslogtreecommitdiff
path: root/home/.oh-my-zsh/plugins/vagrant-prompt
diff options
context:
space:
mode:
Diffstat (limited to 'home/.oh-my-zsh/plugins/vagrant-prompt')
-rw-r--r--home/.oh-my-zsh/plugins/vagrant-prompt/README.md52
-rw-r--r--home/.oh-my-zsh/plugins/vagrant-prompt/vagrant-prompt.plugin.zsh18
2 files changed, 70 insertions, 0 deletions
diff --git a/home/.oh-my-zsh/plugins/vagrant-prompt/README.md b/home/.oh-my-zsh/plugins/vagrant-prompt/README.md
new file mode 100644
index 0000000..f7bfce4
--- /dev/null
+++ b/home/.oh-my-zsh/plugins/vagrant-prompt/README.md
@@ -0,0 +1,52 @@
+# vagrant-prompt
+
+This plugin prompts the status of the Vagrant VMs. It supports single-host and
+multi-host configurations as well.
+
+To use it, add `vagrant-prompt` to the plugins array in your zshrc file:
+
+```zsh
+plugins=(... vagrant-prompt)
+```
+
+**Alberto Re <alberto.re@gmail.com>**
+
+## Usage
+
+To display Vagrant info on your prompt add the `vagrant_prompt_info` to the
+`$PROMPT` or `$RPROMPT` variable in your theme. Example:
+
+```zsh
+PROMPT="$PROMPT"' $(vagrant_prompt_info)'
+# or
+RPROMPT='$(vagrant_prompt_info)'
+```
+
+### Customization
+
+`vagrant_prompt_info` makes use of the following custom variables, which can be set in your
+`.zshrc` file:
+
+```zsh
+ZSH_THEME_VAGRANT_PROMPT_PREFIX="%{$fg_bold[blue]%}["
+ZSH_THEME_VAGRANT_PROMPT_SUFFIX="%{$fg_bold[blue]%}]%{$reset_color%} "
+ZSH_THEME_VAGRANT_PROMPT_RUNNING="%{$fg_no_bold[green]%}●"
+ZSH_THEME_VAGRANT_PROMPT_POWEROFF="%{$fg_no_bold[red]%}●"
+ZSH_THEME_VAGRANT_PROMPT_SUSPENDED="%{$fg_no_bold[yellow]%}●"
+ZSH_THEME_VAGRANT_PROMPT_NOT_CREATED="%{$fg_no_bold[white]%}○"
+```
+
+### State to variable mapping
+
+The plugin uses the output reported by `vagrant status` to print whichever symbol matches,
+according to the following table:
+
+| State | Symbol |
+| ----------- | -------------------------------------- |
+| running | `ZSH_THEME_VAGRANT_PROMPT_RUNNING` |
+| not running | `ZSH_THEME_VAGRANT_PROMPT_POWEROFF` |
+| poweroff | `ZSH_THEME_VAGRANT_PROMPT_POWEROFF` |
+| paused | `ZSH_THEME_VAGRANT_PROMPT_SUSPENDED` |
+| saved | `ZSH_THEME_VAGRANT_PROMPT_SUSPENDED` |
+| suspended | `ZSH_THEME_VAGRANT_PROMPT_SUSPENDED` |
+| not created | `ZSH_THEME_VAGRANT_PROMPT_NOT_CREATED` |
diff --git a/home/.oh-my-zsh/plugins/vagrant-prompt/vagrant-prompt.plugin.zsh b/home/.oh-my-zsh/plugins/vagrant-prompt/vagrant-prompt.plugin.zsh
new file mode 100644
index 0000000..2d8455a
--- /dev/null
+++ b/home/.oh-my-zsh/plugins/vagrant-prompt/vagrant-prompt.plugin.zsh
@@ -0,0 +1,18 @@
+function vagrant_prompt_info() {
+ if [[ ! -d .vagrant || ! -f Vagrantfile ]]; then
+ return
+ fi
+
+ local vm_states vm_state
+ vm_states=(${(f)"$(vagrant status 2> /dev/null | sed -nE 's/^[^ ]* *([[:alnum:] ]*) \([[:alnum:]_]+\)$/\1/p')"})
+ printf '%s' $ZSH_THEME_VAGRANT_PROMPT_PREFIX
+ for vm_state in $vm_states; do
+ case "$vm_state" in
+ running) printf '%s' $ZSH_THEME_VAGRANT_PROMPT_RUNNING ;;
+ "not running"|poweroff) printf '%s' $ZSH_THEME_VAGRANT_PROMPT_POWEROFF ;;
+ paused|saved|suspended) printf '%s' $ZSH_THEME_VAGRANT_PROMPT_SUSPENDED ;;
+ "not created") printf '%s' $ZSH_THEME_VAGRANT_PROMPT_NOT_CREATED ;;
+ esac
+ done
+ printf '%s' $ZSH_THEME_VAGRANT_PROMPT_SUFFIX
+}