-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add brew installation #10
Comments
I created a cask and confirmed that it's working and passes
cask "widgettoggler" do
version "1.2.0"
sha256 "4a37bd84eb391c86e80a05b3b875dae6286418f2223970dbeff03abe310b5af9"
url "https://github.com/sieren/WidgetToggler/releases/download/#{version}/WidgetToggler_#{version.split(".")[0...2].join(".")}.zip"
name "widgettoggler"
desc "macOS Sonoma Widget Toggler for the Tray Bar - Easily Show and Hide Widgets"
homepage "https://github.com/sieren/WidgetToggler"
depends_on macos: ">= :sonoma"
app "WidgetToggler.app"
end I didn't add the recommended Can someone submit this? It can be submitted this way:
|
I will add this to brew but I need to know where anything is saved locally that persists, say settings? Such as '~/.config/widgettoggler' If there is nothing that saves to the device let me know and I will add the cask to brew |
A bit late to this reply, but I finally have an answer. cd ~
find . \
-path "./Library/Mobile Documents" -prune -o -path "./Library/CloudStorage" -prune \
-o \
-xdev -name '*WidgetToggler*' -print Note: Why the long command?
You can just run Running the above command, I get:
Regarding the other file: I'm not sure what exactly the I searched for some prior art: It seems like there is one existing example, but it's wrong: The Based on this, I think the two acceptable choices for the
or just:
|
should be able to close this now |
It would be great if this were installable via brew install!
The text was updated successfully, but these errors were encountered: