Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/curz46/hyper-startup
A plugin for https://hyper.is/. Executes commands when Hyper first starts.
https://github.com/curz46/hyper-startup
Last synced: 16 days ago
JSON representation
A plugin for https://hyper.is/. Executes commands when Hyper first starts.
- Host: GitHub
- URL: https://github.com/curz46/hyper-startup
- Owner: curz46
- Fork: true (DanInglis/hyper-run)
- Created: 2017-01-01T14:07:13.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-05T18:03:01.000Z (almost 8 years ago)
- Last Synced: 2024-09-30T17:28:25.621Z (about 1 month ago)
- Language: JavaScript
- Homepage:
- Size: 3.91 KB
- Stars: 13
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hyper-startup
This is an extension for Hyper, which executes commands when Hyper launches.## install
```
npm install -g hpm-cli
hpm install hyper-startup
```## setup
In your `.hyper.js`...
```
module.exports = {
config: {
...
commands: ['echo first command', 'echo second command']
},
...
};```