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.
26 lines
757 B
Ruby
26 lines
757 B
Ruby
cask "customshortcuts" do
|
|
version "1.1"
|
|
sha256 "e6bda7397e2c2eed0475e1210bf33c22d3d94a2d78ebff89843685969a73f4dc"
|
|
|
|
url "https://dl.houdah.com/customShortcuts/updates/cast_assets/CustomShortcuts#{version}.zip"
|
|
name "CustomShortcuts"
|
|
desc "Customise menu item keyboard shortcuts"
|
|
homepage "https://www.houdah.com/customShortcuts/"
|
|
|
|
livecheck do
|
|
url "https://www.houdah.com/customShortcuts/updates/cast.xml"
|
|
strategy :sparkle, &:short_version
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :high_sierra"
|
|
|
|
app "CustomShortcuts.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/com.houdah.CustomShortcuts",
|
|
"~/Library/Caches/com.houdah.CustomShortcuts",
|
|
"~/Library/Preferences/com.houdah.CustomShortcuts.plist",
|
|
]
|
|
end
|