Help wanted: Integrating menubar
See original GitHub issueHello,
I tried to integrate menubar (https://github.com/maxogden/menubar) with this cli plugin but i cant get it working. I basically removed everything in background.js and added
const { menubar } = require('menubar');
const mb = menubar();
mb.on('ready', () => {
console.log('app is ready');
// your app code here
});
Does anybody has some things in mind i could try to solve this?
Issue Analytics
- State:
- Created 4 years ago
- Reactions:1
- Comments:7 (1 by maintainers)
Top Results From Across the Web
Way to hide or remove the native menu bar · Issue #91
I tried editing "Help" menu at drawio/src/main/webapp/js/diagramly/Menus.js , but when running npm start , the changes I made does not seem to ...
Read more >How to Add, Remove, and Rearrange Menu Bar Icons in ...
1. Hold down the Command ( ) key. 2. Hover your mouse cursor over the icon you want to move. 3. Holding down...
Read more >Add or Remove Menu Bar in File Explorer in Windows 11
Add or Remove File Explorer Menu Bar in Folder Options · 1 Open Folder Options. · 2 Click/tap on the View tab. (see...
Read more >Create custom macOS menu bar apps using Hammerspoon
I just wanted to create a simple Slack integration into the menu bar (more ... a setIcon method on menubar to help us...
Read more >15 Mac Menu Bar Apps You Should Check Out - MacSales.com
Wondering which menu bar apps to add to your Mac? This list of Mac menu bar apps compiled by OWC is a good...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Ah… found the issue. This is working for me
@sem4phor @philippkuehn I know this is an old and closed issue, but I’m being able to run the menubar fine with the
serve
command, but when I build and open the app, nothing happens. Any tips here?