mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
27 lines
704 B
Ruby
27 lines
704 B
Ruby
cask "only-switch" do
|
|
version "2.4.6"
|
|
sha256 "4518af66f72f3524127ea9945d40bd0c58ff0aff010df11c1620a85f10becb94"
|
|
|
|
url "https://github.com/jacklandrin/OnlySwitch/releases/download/release_#{version}/OnlySwitch.dmg"
|
|
name "OnlySwitch"
|
|
desc "System and utility switches"
|
|
homepage "https://github.com/jacklandrin/OnlySwitch"
|
|
|
|
livecheck do
|
|
url :url
|
|
regex(/release[._-]v?(\d+(?:\.\d+)+)/i)
|
|
strategy :github_latest
|
|
end
|
|
|
|
depends_on macos: ">= :monterey"
|
|
|
|
app "Only Switch.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/OnlySwitch",
|
|
"~/Library/Caches/jacklandrin.OnlySwitch",
|
|
"~/Library/OnlySwitch",
|
|
"~/Library/Preferences/jacklandrin.OnlySwitch.plist",
|
|
]
|
|
end
|