local C = {} -- Make local alterations in local.lua C.sleepkill = { bluetooth = function() return hs.battery.powerSource() == "Battery Power" end, wifi = false, apps = { "ssh", }, } C.sleepstart = { bluetooth = false, wifi = false, } C.killApps = { "Music", "Mail", } C.conf = function(item) hs.alert.show(item .. ": " .. type(C[item])) return (C[item] == "function") and C[item]() or C[item] end -- Used to get value from option that is a function C.getval = function(f) local gfind = require('string').gmatch local t = C local v = nil for w, d in gfind(f, "([%w_]+)(.?)") do if d == "." then t[w] = t[w] or {} t = t[w] else v = t[w] end end if type(v) == "function" then return v() else return v end end return C