-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2327 from mikaoelitiana/fix-1155
Add osx touchbar support
- Loading branch information
Showing
3 changed files
with
55 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
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
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,41 @@ | ||
const {TouchBar} = require('electron') | ||
const {TouchBarButton, TouchBarSpacer} = TouchBar | ||
const mainWindow = require('./main-window') | ||
|
||
const allNotes = new TouchBarButton({ | ||
label: '📒', | ||
click: () => { | ||
mainWindow.webContents.send('list:navigate', '/home') | ||
} | ||
}) | ||
|
||
const starredNotes = new TouchBarButton({ | ||
label: '⭐️', | ||
click: () => { | ||
mainWindow.webContents.send('list:navigate', '/starred') | ||
} | ||
}) | ||
|
||
const trash = new TouchBarButton({ | ||
label: '🗑', | ||
click: () => { | ||
mainWindow.webContents.send('list:navigate', '/trashed') | ||
} | ||
}) | ||
|
||
const newNote = new TouchBarButton({ | ||
label: '✎', | ||
click: () => { | ||
mainWindow.webContents.send('list:navigate', '/home') | ||
mainWindow.webContents.send('top:new-note') | ||
} | ||
}) | ||
|
||
module.exports = new TouchBar([ | ||
allNotes, | ||
starredNotes, | ||
trash, | ||
new TouchBarSpacer({size: 'small'}), | ||
newNote | ||
]) | ||
|