zshify 7.2.0 → 9.0.0

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.
Files changed (2) hide show
  1. package/bin/script.zsh +6 -0
  2. package/package.json +1 -1
package/bin/script.zsh CHANGED
@@ -4,6 +4,9 @@ mkdir -p ~/.zshify
4
4
  curl -s https://raw.githubusercontent.com/nrjdalal/zshify/master/config/prompt.zsh | cat >~/.zshify/prompt.zsh
5
5
  grep "source ~/.zshify/prompt.zsh" ~/.zshrc &>/dev/null || echo "source ~/.zshify/prompt.zsh" >>~/.zshrc
6
6
 
7
+ curl -s https://raw.githubusercontent.com/nrjdalal/zshify/master/config/profile.zsh | cat >~/.zshify/profile.zsh
8
+ grep "source ~/.zshify/profile.zsh" ~/.zshrc &>/dev/null || echo "source ~/.zshify/profile.zsh" >>~/.zshrc
9
+
7
10
  curl -s https://raw.githubusercontent.com/nrjdalal/zshify/master/config/background.zsh | cat >~/.zshify/background.zsh
8
11
  grep "source ~/.zshify/background.zsh" ~/.zshrc &>/dev/null || echo "source ~/.zshify/background.zsh" >>~/.zshrc
9
12
 
@@ -13,6 +16,9 @@ grep "source ~/.zshify/fx.zsh" ~/.zshrc &>/dev/null || echo "source ~/.zshify/fx
13
16
  curl -s https://raw.githubusercontent.com/nrjdalal/zshify/master/config/alias.zsh | cat >~/.zshify/alias.zsh
14
17
  grep "source ~/.zshify/alias.zsh" ~/.zshrc &>/dev/null || echo "source ~/.zshify/alias.zsh" >>~/.zshrc
15
18
 
19
+ curl -s https://raw.githubusercontent.com/nrjdalal/zshify/master/config/plugins.zsh | cat >~/.zshify/plugins.zsh
20
+ grep "source ~/.zshify/plugins.zsh" ~/.zshrc &>/dev/null || echo "source ~/.zshify/plugins.zsh" >>~/.zshrc
21
+
16
22
  curl -s https://raw.githubusercontent.com/nrjdalal/zshify/master/config/user.zsh | cat >~/.zshify/user.zsh
17
23
  grep "source ~/.zshify/user.zsh" ~/.zshrc &>/dev/null || echo "source ~/.zshify/user.zsh" >>~/.zshrc
18
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zshify",
3
- "version": "7.2.0",
3
+ "version": "9.0.0",
4
4
  "description": "A minimalistic touch to your prompt!",
5
5
  "bin": {
6
6
  "prompt": "bin/script.zsh"