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.

115 lines
3.2 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
: dialog
: eventtap
: execute
: fs
: hotkey
:loadSpoon load_spoon
: logger
: notify
: pasteboard
: uielement
: window} hs)
(local log (logger.new :log :info))
(set logger.defaultLogLevel :info)
(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)))))
(hotkey.bind mash :t #(execute :/opt/homebrew/bin/alacritty))
(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)
1 year ago
;;; Quitter
; (let [{: start} (require :quitter-fnl)]
; (start {:Calendar 30
; :Discord 300
; :MailMate 600
; :Messages 300
; :Reeder 600
; :Slack 300
; :Telegram 300}))
1 year ago
;;; Spoons
(load_spoon :SpoonInstall)
(local {:SpoonInstall Install} spoon)
(set Install.use_syncinstall true)
;; fnlfmt: skip
(let [hotkeys {:up [mash :k]
:left [mash :h]
:down [mash :j]
:right [mash :l]
:fullscreen [mash :m]
:nextscreen [mash :n]}]
(set window.animationDuration 0.0)
(Install:andUse :MiroWindowsManager {: hotkeys}))
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))