mirror of https://github.com/lcpz/lain.git
widget module loads optimization
This commit is contained in:
parent
0d5c25ffd4
commit
f37a31878e
|
@ -2,7 +2,7 @@
|
||||||
--[[
|
--[[
|
||||||
|
|
||||||
Licensed under GNU General Public License v2
|
Licensed under GNU General Public License v2
|
||||||
* (c) 2013, Luke Bonham
|
* (c) 2013, Luke Bonham
|
||||||
|
|
||||||
--]]
|
--]]
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,6 @@ local newtimer = require("lain.helpers").newtimer
|
||||||
local async = require("lain.asyncshell")
|
local async = require("lain.asyncshell")
|
||||||
local wibox = require("wibox")
|
local wibox = require("wibox")
|
||||||
|
|
||||||
local io = io
|
|
||||||
local setmetatable = setmetatable
|
local setmetatable = setmetatable
|
||||||
|
|
||||||
-- Basic template for custom widgets
|
-- Basic template for custom widgets
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
local newtimer = require("lain.helpers").newtimer
|
local newtimer = require("lain.helpers").newtimer
|
||||||
local wibox = require("wibox")
|
local wibox = require("wibox")
|
||||||
|
|
||||||
local io = io
|
local io = { popen = io.popen }
|
||||||
local setmetatable = setmetatable
|
local setmetatable = setmetatable
|
||||||
|
|
||||||
-- Basic template for custom widgets
|
-- Basic template for custom widgets
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
--]]
|
--]]
|
||||||
|
|
||||||
local wibox = require("awful.wibox")
|
local wibox = require("awful.wibox")
|
||||||
|
|
||||||
local setmetatable = setmetatable
|
local setmetatable = setmetatable
|
||||||
|
|
||||||
-- Creates a thin wibox at a position relative to another wibox
|
-- Creates a thin wibox at a position relative to another wibox
|
||||||
|
|
|
@ -12,7 +12,7 @@ local awful = require("awful")
|
||||||
local beautiful = require("beautiful")
|
local beautiful = require("beautiful")
|
||||||
local naughty = require("naughty")
|
local naughty = require("naughty")
|
||||||
|
|
||||||
local io = io
|
local io = { popen = io.popen }
|
||||||
local os = { date = os.date }
|
local os = { date = os.date }
|
||||||
local tonumber = tonumber
|
local tonumber = tonumber
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@ local beautiful = require("beautiful")
|
||||||
local wibox = require("wibox")
|
local wibox = require("wibox")
|
||||||
local naughty = require("naughty")
|
local naughty = require("naughty")
|
||||||
|
|
||||||
local io = io
|
local io = { popen = io.popen }
|
||||||
local pairs = pairs
|
local pairs = pairs
|
||||||
local string = { match = string.match,
|
local string = { match = string.match,
|
||||||
format = string.format }
|
format = string.format }
|
||||||
|
|
|
@ -13,7 +13,7 @@ local wibox = require("wibox")
|
||||||
|
|
||||||
local util = require("lain.util")
|
local util = require("lain.util")
|
||||||
|
|
||||||
local io = io
|
local io = { popen = io.popen }
|
||||||
local os = { getenv = os.getenv }
|
local os = { getenv = os.getenv }
|
||||||
local pairs = pairs
|
local pairs = pairs
|
||||||
local string = { len = string.len,
|
local string = { len = string.len,
|
||||||
|
|
|
@ -13,7 +13,7 @@ local notify_fg = require("beautiful").fg_focus
|
||||||
local naughty = require("naughty")
|
local naughty = require("naughty")
|
||||||
local wibox = require("wibox")
|
local wibox = require("wibox")
|
||||||
|
|
||||||
local io = io
|
local io = { popen = io.popen }
|
||||||
local tostring = tostring
|
local tostring = tostring
|
||||||
local string = { format = string.format,
|
local string = { format = string.format,
|
||||||
gsub = string.gsub }
|
gsub = string.gsub }
|
||||||
|
|
|
@ -10,7 +10,7 @@ local newtimer = require("lain.helpers").newtimer
|
||||||
|
|
||||||
local wibox = require("wibox")
|
local wibox = require("wibox")
|
||||||
|
|
||||||
local io = io
|
local io = { open = io.open }
|
||||||
local tonumber = tonumber
|
local tonumber = tonumber
|
||||||
|
|
||||||
local setmetatable = setmetatable
|
local setmetatable = setmetatable
|
||||||
|
|
|
@ -13,7 +13,8 @@ local naughty = require("naughty")
|
||||||
local wibox = require("wibox")
|
local wibox = require("wibox")
|
||||||
|
|
||||||
local debug = { getinfo = debug.getinfo }
|
local debug = { getinfo = debug.getinfo }
|
||||||
local io = io
|
local io = { lines = io.lines,
|
||||||
|
open = io.open }
|
||||||
local os = { date = os.date,
|
local os = { date = os.date,
|
||||||
getenv = os.getenv }
|
getenv = os.getenv }
|
||||||
local string = { find = string.find,
|
local string = { find = string.find,
|
||||||
|
|
Loading…
Reference in New Issue