Reputation: 111
I am using hyper terminal. I wrote the following code to change the theme, but it gave the following error.
Command to change theme: hyper i verminal
zsh: command not found: hyper
How can I solve this?
Thanks in advance.
Upvotes: 9
Views: 17091
Reputation: 639
For MacOS simply navigate the toolbar: Plugins > Install Hyper CLI command in PATH
Upvotes: 4
Reputation: 79
On macOS Monterey the way to install new themes is to click on Tools at the menu bar in Hyper, then Install Hyper CLI command in PATH, then it will allow you to install said theme from the Hyper website such as "hyper i verminal", you will then see a message saying that verminal has been installed successfully.
Upvotes: 5
Reputation: 11
Add its bin path to system variable. And then install the themes. Worked for me.
Upvotes: 0
Reputation: 231
I had this problem too. After some tinkering, this command worked for me (assuming you have the hyper app in the mac applications folder):
sudo ln -s "/Applications/Hyper.app/Contents/Resources/bin/hyper" /usr/local/bin/hyper
I used this answer from another question about how to get Sublime Text's zsh command working.
Upvotes: 23