Skip to content
This repository has been archived by the owner on Jun 13, 2022. It is now read-only.

Commit

Permalink
add default config files
Browse files Browse the repository at this point in the history
  • Loading branch information
UziTech committed Jan 28, 2018
1 parent ddb6c7b commit c2fe7b1
Show file tree
Hide file tree
Showing 6 changed files with 77 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.DS_Store
npm-debug.log
node_modules
toolbar.json
./toolbar.json
16 changes: 16 additions & 0 deletions lib/default/toolbar.coffee
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# This file is used by Flex Tool Bar to create buttons on your Tool Bar.
# For more information how to use this package and create your own buttons,
# read the documentation on https://atom.io/packages/flex-tool-bar

module.export =
[
{
type: "button"
icon: "gear"
callback: "flex-tool-bar:edit-config-file"
tooltip: "Edit Tool Bar"
}
{
type: "spacer"
}
]
15 changes: 15 additions & 0 deletions lib/default/toolbar.cson
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# This file is used by Flex Tool Bar to create buttons on your Tool Bar.
# For more information how to use this package and create your own buttons,
# read the documentation on https://atom.io/packages/flex-tool-bar

[
{
type: "button"
icon: "gear"
callback: "flex-tool-bar:edit-config-file"
tooltip: "Edit Tool Bar"
}
{
type: "spacer"
}
]
17 changes: 17 additions & 0 deletions lib/default/toolbar.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/*
* This file is used by Flex Tool Bar to create buttons on your Tool Bar.
* For more information how to use this package and create your own buttons,
* read the documentation on https://atom.io/packages/flex-tool-bar
*/

module.export = [
{
type: 'button',
icon: 'gear',
callback: 'flex-tool-bar:edit-config-file',
tooltip: 'Edit Tool Bar'
},
{
type: 'spacer'
}
];
11 changes: 11 additions & 0 deletions lib/default/toolbar.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[
{
"type": "button",
"icon": "gear",
"callback": "flex-tool-bar:edit-config-file",
"tooltip": "Edit Tool Bar"
},
{
"type": "spacer"
}
]
17 changes: 17 additions & 0 deletions lib/default/toolbar.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/*
* This file is used by Flex Tool Bar to create buttons on your Tool Bar.
* For more information how to use this package and create your own buttons,
* read the documentation on https://atom.io/packages/flex-tool-bar
*/

[
{
type: 'button',
icon: 'gear',
callback: 'flex-tool-bar:edit-config-file',
tooltip: 'Edit Tool Bar'
},
{
type: 'spacer'
},
]

0 comments on commit c2fe7b1

Please sign in to comment.