10 lines
233 B
Lua
10 lines
233 B
Lua
local focus = require("modules.focus")
|
|
|
|
-- Expose clean functions globally for the hs CLI tool
|
|
function ActivateDeepFocus(profileName)
|
|
return focus.activate(profileName)
|
|
end
|
|
|
|
function ClearDeepFocus()
|
|
return focus.clear()
|
|
end |