8 lines
250 B
Lua
Executable File
8 lines
250 B
Lua
Executable File
#!/usr/bin/env lua
|
|
|
|
-- Load the sketchybar lua module
|
|
package.cpath = package.cpath .. ";/Users/" .. os.getenv("USER") .. "/.local/share/sketchybar_lua/?.so"
|
|
|
|
-- Load your main config
|
|
dofile(os.getenv("HOME") .. "/.config/sketchybar/sketchybar.lua")
|