gistfile1.txt
· 237 B · Text
原始檔案
-- 快速鍵:command + alt + ctrl + W
hs.hotkey.bind({"cmd", "alt", "ctrl"}, "W", function()
-- 顯示通知:「Hammerspoon - Hello World」
hs.notify.new({title = "Hammerspoon", informativeText = "Hello World"}):send()
end)
| 1 | -- 快速鍵:command + alt + ctrl + W |
| 2 | hs.hotkey.bind({"cmd", "alt", "ctrl"}, "W", function() |
| 3 | -- 顯示通知:「Hammerspoon - Hello World」 |
| 4 | hs.notify.new({title = "Hammerspoon", informativeText = "Hello World"}):send() |
| 5 | end) |
| 6 |