You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

142 lines
4.9 KiB

1 year ago
;; fennel-ls doesn't support arbitrary allowed globals, so
;; unwrap `hs` here to localize it to just one place
(local {: application
1 year ago
: canvas
1 year ago
: dialog
: eventtap
: execute
: fs
: hotkey
1 year ago
: ipc
1 year ago
: inspect
1 year ago
: loadSpoon
1 year ago
: logger
: notify
: pasteboard
1 year ago
: screen
1 year ago
: uielement
1 year ago
: urlevent
1 year ago
: window} hs)
1 year ago
(local log (logger.new :init :info))
; (set logger.defaultLogLevel :info)
1 year ago
(local {: mash : smash : modal-bind} (require :hotkey))
;; debugging
1 year ago
; (hotkey.bind mash "d" #(dialog.blockAlert "message" "text" "one" "two"))
;; defeat paste blocking
1 year ago
(hotkey.bind [:cmd :alt] :v #(eventtap.keyStrokes (pasteboard.getContents)))
(fn run [...]
(accumulate [last nil _ cmd (ipairs [...])]
(execute cmd)))
(fn with-selection [cb]
(let [app (application.frontmostApplication)
prev-pasteboard (pasteboard.getContents)
e (uielement.focusedElement)
text (if e (e:selectedText)
(do
1 year ago
(eventtap.keyStroke [:cmd] :c)
(pasteboard.getContents)))
content (cb text prev-pasteboard)]
(pasteboard.setContents content)
(app:setFrontmost)
1 year ago
(eventtap.keyStroke [:cmd] :v)
(pasteboard.setContents prev-pasteboard)))
(fn chomp [s]
(if (= (s:sub -1) "\n")
(s:sub 1 -2)
s))
1 year ago
(hotkey.bind mash :e
#(with-selection (fn [text]
(let [home (os.getenv :HOME)
date (chomp (run "date -Iseconds -u"))
file (.. home :/.quickcursor. date)]
(pasteboard.setContents text)
(run (.. "pbpaste > " file)
(.. "/opt/homebrew/bin/neovide --nofork "
file)
(.. "pbcopy < " file) (.. "rm " file))
(pasteboard.getContents)))))
1 year ago
(hotkey.bind mash :t #(execute "/opt/homebrew/bin/alacritty msg create-window"))
1 year ago
(modal-bind mash "," nil
[[mash
:l
nil
(fn []
(with-selection #(.. "[" $1 "]" "(" $2 ")")))]])
2 years ago
2 years ago
;;; Elgato Key Light Air
1 year ago
;; Run `package.loaded["key-light-air"]["find-hostname"]()`
;; to find the hostname of the Key Light Air
(require :key-light-air)
;;; Spoons
1 year ago
(loadSpoon :SpoonInstall)
(local {:SpoonInstall Install} spoon)
(set Install.use_syncinstall true)
(set window.animationDuration 0.0)
1 year ago
;; fnlfmt: skip
(let [hotkeys {:up [mash :k]
:left [mash :h]
:down [mash :j]
:right [mash :l]
:fullscreen [mash :m]
:nextscreen [mash :n]}]
(Install:andUse :MiroWindowsManager {: hotkeys}))
(Install:andUse :SleepCorners {:config {:feedbackSize 25 :neverSleepCorner "*"}
:start true})
1 year ago
;; By default, URLDispatcher focuses the application before opening the URL, but
;; this interacts poorly with Arc since then we can be in the wrong space when
;; the URL is opened in Little Arc.
(let [handlers {:arc #(urlevent.openURLWithBundle $1
:company.thebrowser.Browser)
:firefox-dev :org.mozilla.firefoxdeveloperedition
:firefox :org.mozilla.firefox
:safari :com.apple.Safari
:zoom :us.zoom.xos}
1 year ago
url_patterns [["^https://(.*%.?)zoom.us/j/%d+" handlers.zoom]
["^https://(.*%.?)discnw.org/?" handlers.safari]
["^https://(.*%.?)squareupmessaging.com/?" handlers.safari]
["^https://(.*%.?)bulletin.com/?" handlers.safari]
["^https://(.*%.?)store.apple.com/?" handlers.safari]
["^https://(.*%.?)goodluckbread.com/?" handlers.safari]
["^https://community.glowforge.com/?" handlers.arc]
["^https://accounts.google.com/?" handlers.arc]]
url_redir_decoders [[:sci-hub
"^https://doi.org/(.*)"
1 year ago
"https://sci-hub.st/%1"]
[:twitter
"^https://twitter.com/(.*)"
"https://nitter.net/%1"]]]
(Install:andUse :URLDispatcher {:config {: url_patterns
: url_redir_decoders
1 year ago
:default_handler handlers.arc
:set_system_handler true}
:start true}))
1 year ago
(Install:andUse :ReloadConfiguration {:start true})
;; Local overrides
1 year ago
(when (fs.attributes :local.fnl)
2 years ago
(require :local))
1 year ago
(let [n (notify.new {:title :Hammerspoon
:informativeText "Config loaded"
:withdrawAfter 2})]
(n:send))