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.
22 lines
454 B
Ruby
22 lines
454 B
Ruby
cask "fuzzyclock" do
|
|
version "2.3.0"
|
|
sha256 :no_check
|
|
|
|
url "https://mschmidt.me/macOS/FuzzyClock.zip"
|
|
name "FuzzyClock"
|
|
desc "Displays the time in your menubar"
|
|
homepage "https://mschmidt.me/macos.html"
|
|
|
|
livecheck do
|
|
url :homepage
|
|
regex(/version\s+(\d+(?:\.\d+)+)/i)
|
|
end
|
|
|
|
app "FuzzyClock.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Scripts/me.mschmidt.FuzzyClock",
|
|
"~/Library/Containers/me.mschmidt.FuzzyClock",
|
|
]
|
|
end
|