npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

hyper-tab-icons-plus

v2.2.7

Published

Icons in the header tabs for the current running process in Hyper.

Downloads

53

Readme

Hyper Tab Icons (Plus)

Improved forked version of Hyper Tab Icons from Dylan Frankland, displays icons in the header tabs for the current running process in Hyper terminal.

How It Works

Uses fuzzaldrin to try to match the current tab title with the SVG icons that have been added to the repo, then displays the matched icon. Has the ability to map different icons and styles.

Demo

alt demo

Configuration

There are few options to customize the different icons and styles applied. You may configure these inside of ~/.hyper.js.

config.tabIcons.activeStyle

  • Type: object
  • Default:
    {
      display: 'inline-block',
      marginRight: '0.25rem',
      transition: 'opacity 200ms ease-in',
      verticalAlign: 'middle',
      width: '1rem',
    }

This object can be any CSSStyleDeclaration allowed. Pass an inline style object the same way you would with React.

config.tabIcons.inactiveStyle

  • Type: object
  • Default:
    {
      display: 'inline-block',
      marginRight: '0.25rem',
      transition: 'opacity 200ms ease-in',
      verticalAlign: 'middle',
      width: '1rem',
      opacity: 0.3,
    }

This object can be any CSSStyleDeclaration allowed. Pass an inline style object the same way you would with React.

config.tabIcons.mapIcons

  • Type: object
  • Default: {}

Map of icon to array of process names. Example:

{
  nodejs: ['node'],
  docker: ['docker-compose'],
}

Look inside src/icons for possible icons to map to. Look at src/constants/mapIcons.js for defaults.

config.tabIcons.mapColors

  • Type: object
  • Default: {}

Map of process name to color string. Example:

{
  bash: '#FFF',
  fish: '#D8494F',
  zsh: '#C5DB00',
}

Look at src/constants/mapColors.js for defaults.

config.tabIcons.disableColors

  • Type: boolean
  • Default: false

Toggles icon colors. Inherits color from current CSS applied to tab text ✨magically✨.

config.tabIcons.processNameRegex

  • Type: object
  • Default: /^(.*?) /

The regex used to capture the process name in the title.

If you use something like zsh that swaps the process name and current working directory, the following regex should work: /: (.*?)$/.

Alternatively, supply an object with the properties source and flags.

{
  source: '^(.*?) ',
  flags: '',
}

config.tabIcons.processNameMatch

  • Type: number (integer)
  • Default: 1

The index of the match out of the array of matches made by config.tabIcons.processNameRegex.

An index of 0 is the full match made by the regex. An index of 1 or more is used to get an exact match from one of the matching groups.

Contribution

There are an almost infinite amount of processes out there, so any help adding new icons, mapping colors, et cetera is greatly appreciated!

1. Add new icon

Add newicon.svg icon into src/icons/ folder, then edit the file src/icons/index.js

export newicon from './newicon.svg';

2. Map icon to process's name

Then, edit src/constants/mapIcons.js, please note:

newicon: [
    'process-name-1',
    'process-name-2',
    'process-name-3',
    'process-name-4',
  ],

newicon should match the name you have exported above, but the array is the name of processes. Make example, we use shell icon for all kinds of bash, fish and zsh process.

3. Map color

Now you can map color by editing src/constants/mapColors.js file. Please note that you need to use the process-name to map the color, not icon name.

Then run npm run build to make the build if you want.

Credit

Inspired by Atom's file-icons. This project was first initiated by Dylan Frankland, I forked it and add more stuffs here.