├── .gitignore ├── LICENSE.md ├── README.md ├── lib ├── entries.coffee ├── tool-bar-almighty.coffee └── utils.coffee ├── package.json └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varemenos/atom-toolbar-almighty/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varemenos/atom-toolbar-almighty/HEAD/README.md -------------------------------------------------------------------------------- /lib/entries.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varemenos/atom-toolbar-almighty/HEAD/lib/entries.coffee -------------------------------------------------------------------------------- /lib/tool-bar-almighty.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varemenos/atom-toolbar-almighty/HEAD/lib/tool-bar-almighty.coffee -------------------------------------------------------------------------------- /lib/utils.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varemenos/atom-toolbar-almighty/HEAD/lib/utils.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varemenos/atom-toolbar-almighty/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varemenos/atom-toolbar-almighty/HEAD/screenshot.png --------------------------------------------------------------------------------