1.0.0 • Published 7 years ago

hyper-greeting v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

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