-
Notifications
You must be signed in to change notification settings - Fork 11
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
0 parents
commit 41f342c
Showing
9 changed files
with
64 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Keep-*/ | ||
node_modules/ |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
v7.6.0 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Keep | ||
|
||
|
||
## Todo | ||
- [ ] Better icons | ||
- [ ] Add session save support | ||
- [ ] Add option menu to exit | ||
- [ ] Allow configuration of size etc |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<html> | ||
<head> | ||
<style> | ||
body { margin: 0; padding: 0; } | ||
webview { height: 100%; width: 100%; } | ||
</style> | ||
</head> | ||
<body> | ||
<webview autosize partition="persist:google" src="https://keep.google.com"></webview> | ||
</body> | ||
</html> |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
const Menubar = require('menubar') | ||
|
||
const menubar = Menubar({ | ||
alwaysOnTop: true, | ||
height: 600, | ||
preloadWindow: true, | ||
showDockIcon: false, | ||
showOnAllWorkspaces: true, | ||
tooltip: 'Keep', | ||
width: 380 | ||
}) | ||
|
||
menubar.on('focus-lost', () => { | ||
menubar.hideWindow() | ||
}) |
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"name": "keep", | ||
"productName": "Keep", | ||
"version": "0.1.0", | ||
"description": "Google Keep menu bar app for macOS", | ||
"main": "main.js", | ||
"scripts": { | ||
"build": "electron-packager ./ --icon=Keep.icns --overwrite --platform=darwin --quiet", | ||
"start": "electron .", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"repository": "https://github.com/tmcinerney/keep", | ||
"keywords": [ | ||
"google", | ||
"keep", | ||
"tray" | ||
], | ||
"author": "Travers McInerney", | ||
"license": "MIT", | ||
"dependencies": { | ||
"menubar": "^5.2.3" | ||
}, | ||
"devDependencies": { | ||
"electron": "^1.6.2", | ||
"electron-packager": "^8.5.2" | ||
} | ||
} |