Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/MunGell/atom-toolbar-config
Simple atom toolbar configuration
https://github.com/MunGell/atom-toolbar-config
atom atom-plugin toolbar
Last synced: 10 days ago
JSON representation
Simple atom toolbar configuration
- Host: GitHub
- URL: https://github.com/MunGell/atom-toolbar-config
- Owner: MunGell
- License: mit
- Created: 2015-10-30T17:25:53.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-06-28T19:16:00.000Z (over 8 years ago)
- Last Synced: 2024-08-01T12:16:32.349Z (3 months ago)
- Topics: atom, atom-plugin, toolbar
- Language: JavaScript
- Size: 2.93 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Configurable Toolbar
Simple atom package that allows you to configure icons for [tool-bar](https://atom.io/packages/tool-bar).
Inspired by [tool-bar-main](https://github.com/suda/toolbar-main)## Configuration
Add `tool-bar-config` property to your config.cson file in following format:
```
"tool-bar-config": [
{
icon: "document"
iconSet: "ion"
title: "New File"
callback: "application:new-file"
}
{
icon: "folder"
iconSet: "ion"
title: "Open..."
callback: "application:open-folder"
}
{
icon: "archive"
iconSet: "ion"
title: "Save"
callback: "core:save"
}
{
icon: "spacer"
}
{
icon: 'search'
iconSet: 'ion'
title: 'Find in Buffer'
callback: 'find-and-replace:show'
}
{
icon: "shuffle"
iconSet: "ion"
title: "Replace in Buffer"
callback: "find-and-replace:show-replace"
}
{
icon: "spacer"
}
{
icon: "navicon-round"
iconSet: "ion"
title: "Toggle Command Palette"
callback: "command-palette:toggle"
}
{
icon: "gear-a"
iconSet: "ion"
title: "Open Settings View"
callback: "settings-view:open"
}
{
icon: "spacer"
}
{
icon: "refresh"
iconSet: "ion"
title: "Reload Window"
callback: "window:reload"
}
]
```This example reproduces similar view to [tool-bar-main](https://github.com/suda/toolbar-main).
License: MIT