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.
21 lines
536 B
Ruby
21 lines
536 B
Ruby
cask "haptickey" do
|
|
version "0.7.0"
|
|
sha256 "f2f2cb1b8bc38cec80d430dabf3c8020c40a54b0380079e83294c62c7c108c53"
|
|
|
|
url "https://github.com/niw/HapticKey/releases/download/#{version}/HapticKey.app.zip"
|
|
name "HapticKey"
|
|
desc "Trigger haptic feedback when tapping Touch Bar"
|
|
homepage "https://github.com/niw/HapticKey"
|
|
|
|
depends_on macos: ">= :sierra"
|
|
|
|
app "HapticKey.app"
|
|
|
|
uninstall quit: "at.niw.HapticKey"
|
|
|
|
zap trash: [
|
|
"~/Library/Caches/at.niw.HapticKey",
|
|
"~/Library/Preferences/at.niw.HapticKey.plist",
|
|
]
|
|
end
|