Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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']
},
...
};

```