zshify 1.0.59 → 1.0.62

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/bin/script.zsh ADDED
@@ -0,0 +1,9 @@
1
+ #!/bin/zsh
2
+ mkdir -p ~/.zshify
3
+ curl -s https://raw.githubusercontent.com/nrjdalal/zshify/master/config/prompt.zsh | cat >~/.zshify/prompt.zsh
4
+
5
+ [[ "$?" == "1" ]] && echo "source ~/.zshify/prompt.zsh" >>~/.zshrc
6
+
7
+ echo
8
+ echo "zshify enabled, to reload, run -"
9
+ echo "exec zsh"
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "zshify",
3
- "version": "1.0.59",
3
+ "version": "1.0.62",
4
4
  "description": "A minimalistic touch to your prompt!",
5
5
  "bin": {
6
- "prompt": "bin/prompt.zsh"
6
+ "prompt": "bin/script.zsh"
7
7
  },
8
8
  "scripts": {
9
9
  "release": "yarn publish --patch"
package/bin/prompt.zsh DELETED
@@ -1,6 +0,0 @@
1
- #!/bin/zsh
2
- curl -s https://raw.githubusercontent.com/nrjdalal/mac-setup/main/.zshrc | cat >~/.zshrc
3
-
4
- echo
5
- echo ".zshrc config add, to reload, run -"
6
- echo "exec zsh"