-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
050e90d
commit f6f8d7f
Showing
2 changed files
with
17 additions
and
27 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,19 @@ | ||
![menubar_interface](https://user-images.githubusercontent.com/11463275/29501256-41e46114-85f5-11e7-9876-108172bef118.png) | ||
|
||
#### Note To Self: early development. This repository is being developed with forks as a bridge node. <br>Click through to the specific organization and make changes on that branch. | ||
### Electron, a node package that turns your javascript into desktop applications. | ||
For our purposes, "MenuBar" Desktop Application. | ||
|
||
Inital files that need manipulation | ||
## Dynamic Wallpapaer | ||
![menubar_interface](https://user-images.githubusercontent.com/11463275/29501256-41e46114-85f5-11e7-9876-108172bef118.png) | ||
|
||
Here is a nice example for beginners: https://steemit.com/education/@ryanbaer/getting-started-with-electron-a-basic-menubar-app-part-1 | ||
<pre> | ||
vi index.js | ||
atom index.js | ||
atom index.html | ||
atom main.js | ||
atom package.json | ||
|
||
npm install -g opener | ||
## Install | ||
```bash | ||
npm install | ||
if "Cannot find module 'electron' from '/Users/michaeldimmitt/js_menubar_attempt'" | ||
npm install --save-dev electron | ||
|
||
electron-packager . | ||
</pre> | ||
<br> | ||
<b>In one command, rebuild:</b> | ||
<pre>electron-packager . --overwrite; open dyna-dynamic-walpaper-darwin-x64/dyna-dynamic-walpaper.app/ | ||
</pre> | ||
|
||
Copyright (c) 2017, Michael Dimmitt | ||
<br>Access granted upon approved request. | ||
npm run dyna | ||
``` | ||
|
||
## Uninstall | ||
```bash | ||
click uninstall | ||
quit menubar application | ||
``` | ||
<hr/> | ||
Copyright (c) 2017, Michael Dimmitt | ||
<br>Access granted upon approved request. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,5 +9,7 @@ | |
"opener": "^1.4.3" | ||
}, | ||
"main": "main.js", | ||
"scripts": {} | ||
"scripts": { | ||
"dyna": "electron-packager . --overwrite" | ||
} | ||
} |