0.0.1 • Published 5 years ago

get-icon-path v0.0.1

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

Get icon path from theme - freedesktop spec

An alternative to hardcode tray for electron apps !

What's this

A lot of electron apps use hardcoded icons for tray icon, such as discord, rambox, etc... This module allows those apps to use icons from icons themes installed for Gnome, KDE... It was originally developped for rambox. It's based on freedesktop icon theme specification.

USAGE

npm i --save get-icon-path

const { getIcon, getIconSync } = require('get-icon-path')
getIcon({ iconName: 'rambox-notification', size: 32 }, 'test.path', function (e) {
  console.log(e, 'Promised')
})
getIcon('rambox-notification', 'test.path', function (e) {
  //e will equals to 'test.path' if no icons is found
  console.log(e, 'Promised')
})
var res = getIconSync({ iconName: 'rambox-notification' }, 'text.path')
console.log(res, 'Non promised')

DOCUMENTATION

https://maxerbox.github.io/get-icon-path/

TO DO

  • Herited theme parsing
  • KDE enabled theme detection