Last active
September 12, 2015 18:34
-
-
Save MadcapJake/53e386dbfb5e67c18aae to your computer and use it in GitHub Desktop.
My Atom Toolbar
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
type: 'button' | |
icon: 'navicon-round' | |
iconset: 'ion' | |
callback: 'command-palette:toggle' | |
tooltip: 'Toggle Command Palette' | |
} | |
{ | |
type: 'button' | |
icon: 'chevron-right' | |
iconset: 'ion' | |
callback: 'tree-view:toggle' | |
tooltip: 'Toggle Tree View' | |
} | |
{ | |
type: 'button' | |
icon: 'th' | |
iconset: 'fa' | |
callback: 'expose:toggle' | |
} | |
{ | |
type: 'button' | |
icon: 'briefcase' | |
iconset: 'ion' | |
callback: 'project-manager:toggle' | |
tooltip: 'Open Project...' | |
} | |
{ | |
type: 'button' | |
icon: 'checklist' | |
callback: 'imdone-atom:tasks' | |
tooltip: 'Tasks' | |
} | |
{ | |
type: 'button' | |
icon: 'search' | |
iconset: 'ion' | |
callback: 'find-and-replace:show' | |
tooltip: 'Find in Buffer' | |
} | |
{ | |
type: 'spacer' | |
} | |
{ | |
type: 'button' | |
icon: 'mark-github' | |
callback: 'git-plus:menu' | |
tooltip: 'Git Plus menu' | |
} | |
{ | |
type: 'button' | |
icon: 'repo-push' | |
callback: 'git-plus:push' | |
tooltip: 'Push to Github' | |
} | |
{ | |
type: 'spacer' | |
} | |
{ | |
type: 'button' | |
icon: 'zap' | |
callback: 'build:trigger' | |
tooltip: 'Build your project' | |
} | |
{ | |
type: 'button' | |
icon: 'android-more-vertical' | |
iconset: 'ion' | |
callback: 'build:select-active-target' | |
tooltip: 'Display available build targets' | |
} | |
{ | |
type: 'button' | |
icon: 'eye' | |
callback: 'build:toggle-panel' | |
tooltip: 'Toggle the build panel' | |
} | |
{ | |
type: 'spacer' | |
} | |
{ | |
type: 'button' | |
icon: 'playback-play' | |
callback: 'run:file' | |
tooltip: 'Run a file' | |
} | |
{ | |
type: 'button' | |
icon: 'primitive-square' | |
callback: 'run:stop' | |
tooltip: 'Stop running file' | |
} | |
{ | |
type: 'spacer' | |
} | |
{ | |
type: 'button' | |
icon: 'settings' | |
iconset: 'ion' | |
callback: 'settings-view:open' | |
tooltip: 'Open Settings View' | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment