zshify 1.1.2 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/bin/script.zsh +3 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Zshify - A Minimalistic Touch To Your Prompt!
|
|
2
2
|
|
|
3
|
-
<img src="https://raw.githubusercontent.com/nrjdalal/zshify/master/zshify.png"
|
|
3
|
+
<img src="https://raw.githubusercontent.com/nrjdalal/zshify/master/zshify.png">
|
|
4
4
|
|
|
5
5
|
Zshify is a minimalistic, one command installation to customize the prompt of your Zshell or Zsh!
|
|
6
6
|
|
package/bin/script.zsh
CHANGED
|
@@ -13,6 +13,9 @@ grep "source ~/.zshify/fx.zsh" ~/.zshrc &>/dev/null || echo "source ~/.zshify/fx
|
|
|
13
13
|
curl -s https://raw.githubusercontent.com/nrjdalal/zshify/master/config/user.zsh | cat >~/.zshify/user.zsh
|
|
14
14
|
grep "source ~/.zshify/user.zsh" ~/.zshrc &>/dev/null || echo "source ~/.zshify/user.zsh" >>~/.zshrc
|
|
15
15
|
|
|
16
|
+
curl -s https://raw.githubusercontent.com/nrjdalal/zshify/master/config/postgres.zsh | cat >~/.zshify/postgres.zsh
|
|
17
|
+
grep "source ~/.zshify/postgres.zsh" ~/.zshrc &>/dev/null || echo "source ~/.zshify/postgres.zsh" >>~/.zshrc
|
|
18
|
+
|
|
16
19
|
which brew &>/dev/null || echo "\n$(tput setaf 1)brew not installed! install via -$(tput sgr0)\n/bin/bash -c \"\$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"\"
|
|
17
20
|
|
|
18
21
|
echo "\n$(tput setaf 2)zshify enabled! to reload, run -$(tput sgr0) exec zsh"
|