mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
The migration of `orka.rb` and then `o*.rb` has worked well without complaint so: let's move everything else, too.
29 lines
824 B
Ruby
29 lines
824 B
Ruby
cask "hiddenbar" do
|
|
version "1.9"
|
|
sha256 "3f54b024f5c1c40bc18aebe39014710289b47e147e71561fae22a661cab26d02"
|
|
|
|
url "https://github.com/dwarvesf/hidden/releases/download/v#{version}/Hidden.Bar.#{version}.dmg"
|
|
name "Hidden Bar"
|
|
desc "Utility to hide menu bar items"
|
|
homepage "https://github.com/dwarvesf/hidden/"
|
|
|
|
livecheck do
|
|
url :url
|
|
strategy :github_latest
|
|
end
|
|
|
|
depends_on macos: ">= :high_sierra"
|
|
|
|
app "Hidden Bar.app"
|
|
|
|
uninstall quit: "com.dwarvesv.minimalbar",
|
|
launchctl: "com.dwarvesv.LauncherApplication"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Scripts/com.dwarvesv.LauncherApplication",
|
|
"~/Library/Application Scripts/com.dwarvesv.minimalbar",
|
|
"~/Library/Containers/com.dwarvesv.LauncherApplication",
|
|
"~/Library/Containers/com.dwarvesv.minimalbar",
|
|
]
|
|
end
|