Skip to content

Turn your Hyper terminal into nyan cat while typing.

License

Notifications You must be signed in to change notification settings

Aaronius/hyper-cat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Mar 30, 2019
e8d6e38 · Mar 30, 2019

History

33 Commits
Jan 28, 2017
Jan 28, 2017
Jan 28, 2017
Mar 30, 2019
Jan 28, 2017
Jan 28, 2017
Jan 28, 2017
Mar 30, 2019
Jan 28, 2017
Jan 28, 2017
Mar 30, 2019
Mar 30, 2019
Jan 28, 2017
Jan 28, 2017

Repository files navigation

Turn your Hyper terminal into nyan cat while typing. Audio included!

Screen Capture

To install, edit ~/.hyper.js and add hyper-cat to plugins:

module.exports = {
  ...
  plugins: [
    "hyper-cat"
  ]
  ...
};

You may then need to reload your terminal.

Configuration

Configuration can by applied by editing ~/.hyper.js as follows:

module.exports = {
  config: {
    ...
    hyperCat: {
      // The number of pixels the cat and rainbow should jump up and down.
      staggerHeight: 2, 
      // The max opacity of the rainbow.
      rainbowMaxAlpha: 1, 
      // When nyan audio shall be enabled:
      //   true will always play nyan audio
      //   false will never play nyan audio
      //   "whileTyping" will play nyan audio while typing
      audioEnabled: "whileTyping", 
      // When nyan video shall be enabled:
      //   true will always play nyan video
      //   false will never play nyan video
      //   "whileTyping" will play nyan video while typing
      videoEnabled: "whileTyping"
    }
    ...
  }
}