-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.lua
More file actions
30 lines (26 loc) · 1.11 KB
/
init.lua
File metadata and controls
30 lines (26 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
--[[
-- =============================================================================
-- Hammerspoon - Boton de clear consola
-- =============================================================================
--]]
hs.console.toolbar():addItems(
{
id = "clearConsole",
image = hs.image.imageFromName("NSTrashFull"),
fn = function(...) hs.console.clearConsole() end,
label = "Clear",
tooltip = "Clear Console",
}
):insertItem("clearConsole", #hs.console.toolbar():visibleItems() + 1)
-- /Users/eugenioazurmendi/.hammerspoon/init.lua (SCRIPT DE PRUEBA TEMPORAL)
-- =============================================================================
-- Hammerspoon - Configuración Principal
-- =============================================================================
-- Este archivo carga todos los Spoons (plugins) y configuraciones.
-- =============================================================================
--[[
-- Carga del Spoon para Pro Tools
--]]
hs.application.enableSpotlightForNameSearches(true)
hs.loadSpoon("ProToolsAutomator")
spoon.ProToolsAutomator:start()