mirror of
https://github.com/MonitorControl/MonitorControl.git
synced 2026-05-15 14:15:55 -06:00
[GH-ISSUE #189] How to hide the icons on taskbar? #139
Labels
No labels
Status: Abandoned
arm64
beta
beta
bug
done
duplicate
enhancement
feedback needed from reporter
in progress
invalid
investigating
known Issue
monitor Issue
pull-request
translation
unable to reproduce
unreleased
x86
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/MonitorControl#139
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @valasco on GitHub (Mar 23, 2020).
Original GitHub issue: https://github.com/MonitorControl/MonitorControl/issues/189
1st. thx for this app,it works on my display.
but the icon is too ugly :>, how can i hide it? I think it will be gone if I delect it,but I can't find where is it. if there is a way to hide it, please tell me,thx!
best regards!
@quantumgolem commented on GitHub (Mar 27, 2020):
You can use Bartender or a similar free app to do it
@JoniVR commented on GitHub (Apr 3, 2020):
I agree that it might be better to just use bartender or vanilla to hide the icons you want to hide.
If we allow you to hide the icon there’s no way to access your preferences with the current implementation.
@realav commented on GitHub (Apr 21, 2020):
We can implement this feature like Rectangle app.

@acousticbiker commented on GitHub (Jul 10, 2020):
Thanks, JoniVR - great app that fills a curious gap in macOS. If you're open to reconsidering, I too would appreciate an option to hide the menubar icon, since once preferences have been set initially there's not much reason to go back to it.
@JoniVR commented on GitHub (Jul 10, 2020):
I agree that the rectangle implementation might work pretty well, PR's always welcome though! 🙂
@Mobofunk commented on GitHub (Jul 17, 2020):
Just signed up to Git to also request this feature, the rectangle way sounds nice to me :)
Thanks for the app, working well on my 2 x Philips 328e1ca monitors
@raivivek commented on GitHub (Aug 13, 2020):
Or something like, show up only when external display is connected would also be nice. Thanks again for the great software.
@sdaitzman commented on GitHub (Nov 13, 2020):
Gigantic +1 on this issue ☺️
@realav commented on GitHub (Nov 18, 2020):
I easily implemented in my build by using applicationShouldHandleReopen
func applicationShouldHandleReopen(_: NSApplication, hasVisibleWindows _: Bool) -> Bool { self.prefsClicked(self) return true }@sdaitzman commented on GitHub (Nov 18, 2020):
@legendaryaman where do you make that change? Do you have a fork somewhere? Thanks so much! 😃
@sdaitzman commented on GitHub (Nov 18, 2020):
Oh I see, you added it within AppDelegate.swift inside the AppDelegate class. I had to add a semicolon to get it to compile:
This adds my expected behavior of "the preferences pop up when you open the app again" but does not hide the icon. Is there an easy way to do that? I'm also poking into the code to try and see.
@realav commented on GitHub (Nov 19, 2020):
Just comment out these two lines in AppDelegate
self.statusItem.image = NSImage(named: "status")self.statusItem.menu = self.statusMenuStatus bar menu will also disappear after this change so don't forget to add a quit button in MainPrefsViewController
@IBAction func quitButton(_: AnyObject) { app.quitClicked(self) }@sdaitzman commented on GitHub (Nov 19, 2020):
@legendaryaman thank you!!
@xflashxx commented on GitHub (Feb 15, 2021):
Could you folks who managed to hide the icon in the menu bar please share the files you changed (or say where to insert/delete code) and give instructions how to build the app using Xcode for less experienced users who do not want to wait until this feature is integrated (if ever)?
Would be really cool and for sure be appreciated by many reading this here!
@8va commented on GitHub (May 18, 2021):
I also wouldn't know how to put together a custom build myself but would really appreciate this feature.
@waydabber commented on GitHub (Aug 9, 2021):
I added an option for that in settings.
(note: it will be in the upcoming 3.0.0 release)
@JoniVR commented on GitHub (Aug 11, 2021):
Should be added in v3.0.0 Beta 6. If you have problems, please report them in #509