19 lines
468 B
Ruby
19 lines
468 B
Ruby
cask "shortcutdetective" do
|
|
version "1.0"
|
|
sha256 :no_check
|
|
|
|
url "https://www.irradiatedsoftware.com/downloads/ShortcutDetective.zip"
|
|
name "ShortcutDetective"
|
|
desc "Detects which app receives a keyboard shortcut (hotkey)"
|
|
homepage "https://www.irradiatedsoftware.com/labs/"
|
|
|
|
livecheck do
|
|
url :url
|
|
strategy :extract_plist
|
|
end
|
|
|
|
app "ShortcutDetective.app"
|
|
|
|
zap trash: "~/Library/Preferences/com.irradiatedsoftware.ShortcutDetective.plist"
|
|
end
|