Skip to content

Instantly share code, notes, and snippets.

@MadcapJake
Last active September 12, 2015 18:34
Show Gist options
  • Save MadcapJake/53e386dbfb5e67c18aae to your computer and use it in GitHub Desktop.
Save MadcapJake/53e386dbfb5e67c18aae to your computer and use it in GitHub Desktop.
My Atom Toolbar
[
{
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