This is an extension for Hyper, which executes commands when Hyper launches.
npm install -g hpm-cli
hpm install hyper-startup
In your .hyper.js
...
module.exports = {
config: {
...
commands: ['echo first command', 'echo second command']
},
...
};