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
736 B
Ruby
26 lines
736 B
Ruby
cask "resolutionator" do
|
|
version "2.4.0"
|
|
sha256 "e9fb9b1946deddc62ff0bf5d46066a8cc91564c358e5d33bf85029f4ef75d5bb"
|
|
|
|
url "https://manytricks.com/download/_do_not_hotlink_/resolutionator#{version.no_dots}.dmg"
|
|
name "Resolutionator"
|
|
desc "Use any of your display's available resolutions"
|
|
homepage "https://manytricks.com/resolutionator/"
|
|
|
|
livecheck do
|
|
url "https://manytricks.com/resolutionator/appcast/"
|
|
strategy :sparkle do |item|
|
|
(item.short_version + ".0").split(".")[0..2].join(".")
|
|
end
|
|
end
|
|
|
|
auto_updates true
|
|
|
|
app "Resolutionator.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Caches/com.apple.helpd/Generated/Resolutionator Help*",
|
|
"~/Library/Preferences/com.manytricks.Resolutionator.plist",
|
|
]
|
|
end
|