hyper-greeting

v1.0.0
Add a nice greeting to each new session created in Hyper.
hyper hyperterm greeting cowsay pokemonsay fortune

hyper-greeting

Add a nice greeting to each new session created in Hyper.

Configuration

Edit ~/.hyper.js file and add these options:

config.greeting

A string; the command to run to output the greeting.

config.greetingArgs

An array of strings as arguments to the config.greeting.

Examples

  • Uses the fortune command:

    module.exports = {
      config: {
        greeting: 'fortune',
      }
    };
    
  • Uses bash shell, pipes, fortune, and cowsay:

    module.exports = {
      config: {
        greeting: 'bash',
        greetingArgs: ['-c', 'fortune | cowsay'],
      }
    };
    
  • Uses a preloaded fish shell function:

    module.exports = {
      config: {
        greeting: 'fish',
        greetingArgs: ['-c', 'greeting'],
      }
    };
    
npm i hyper-greeting

Metadata

  • MIT
  • Whatever
  • Dylan Frankland
  • released 12/15/2016

Downloads

Maintainers