2009-09-29 22:33:19 +02:00
|
|
|
---------------------------------------------------
|
|
|
|
-- Licensed under the GNU General Public License v2
|
2010-01-02 21:21:54 +01:00
|
|
|
-- * (c) 2010, Adrian C. <anrxc@sysphere.org>
|
|
|
|
-- * (c) 2010, Rémy C. <shikamaru@mandriva.org>
|
|
|
|
-- * (c) 2010, Benedikt Sauer <filmor@gmail.com>
|
|
|
|
-- * (c) 2009, Lucas de Vries <lucas@glacicle.com>
|
2009-09-29 22:33:19 +02:00
|
|
|
---------------------------------------------------
|
Import of vicious source tree.
Vicious is a modular widget library for 'awesome' window manager,
derived from the 'Wicked' widget library.
Summary of changes:
* Original wicked code modularized
* Widgets ported from Wicked:
- CPU, MEM, FS, NET, Date, Uptime, MPD
* CPU widget rewritten, uses pattern matching
* MEM widget rewritten, uses pattern matching
- Swap widget merged with MEM widget type
* FS widget rewritten, uses pattern matching
- Also fixed padding in the process
* NET widget rewritten, uses pattern matching
* MPD widget rewritten, a bit more versatile
* Removed deprecated helper functions
* Widgets written for Vicious:
- Thermal, Battery, Mbox, OrgMode, Volume, Entropy,
Disk I/O, System Load, Wireless, Pacman, Maildir
2009-07-29 17:59:32 +02:00
|
|
|
|
|
|
|
-- {{{ Grab environment
|
|
|
|
local pairs = pairs
|
2009-11-11 02:43:11 +01:00
|
|
|
local io = { open = io.open }
|
2009-11-11 14:30:26 +01:00
|
|
|
local setmetatable = setmetatable
|
2009-08-05 22:11:11 +02:00
|
|
|
local string = {
|
|
|
|
sub = string.sub,
|
|
|
|
gsub = string.gsub
|
|
|
|
}
|
Import of vicious source tree.
Vicious is a modular widget library for 'awesome' window manager,
derived from the 'Wicked' widget library.
Summary of changes:
* Original wicked code modularized
* Widgets ported from Wicked:
- CPU, MEM, FS, NET, Date, Uptime, MPD
* CPU widget rewritten, uses pattern matching
* MEM widget rewritten, uses pattern matching
- Swap widget merged with MEM widget type
* FS widget rewritten, uses pattern matching
- Also fixed padding in the process
* NET widget rewritten, uses pattern matching
* MPD widget rewritten, a bit more versatile
* Removed deprecated helper functions
* Widgets written for Vicious:
- Thermal, Battery, Mbox, OrgMode, Volume, Entropy,
Disk I/O, System Load, Wireless, Pacman, Maildir
2009-07-29 17:59:32 +02:00
|
|
|
-- }}}
|
|
|
|
|
|
|
|
|
|
|
|
-- Helpers: provides helper functions for vicious widgets
|
|
|
|
module("vicious.helpers")
|
|
|
|
|
|
|
|
|
2009-11-03 01:09:46 +01:00
|
|
|
-- {{{ Variable definitions
|
|
|
|
local scroller = {}
|
|
|
|
-- }}}
|
|
|
|
|
|
|
|
-- {{{ Helper functions
|
2009-11-11 02:43:11 +01:00
|
|
|
-- {{{ Expose path as a Lua table
|
2009-11-11 14:30:26 +01:00
|
|
|
function pathtotable(path)
|
|
|
|
return setmetatable({},
|
|
|
|
{ __index = function(_, name)
|
|
|
|
local f = io.open(path .. '/' .. name)
|
|
|
|
if f then
|
|
|
|
local s = f:read("*all")
|
|
|
|
f:close()
|
|
|
|
return s
|
|
|
|
end
|
|
|
|
end
|
|
|
|
})
|
|
|
|
end
|
2009-11-11 02:43:11 +01:00
|
|
|
-- }}}
|
|
|
|
|
Import of vicious source tree.
Vicious is a modular widget library for 'awesome' window manager,
derived from the 'Wicked' widget library.
Summary of changes:
* Original wicked code modularized
* Widgets ported from Wicked:
- CPU, MEM, FS, NET, Date, Uptime, MPD
* CPU widget rewritten, uses pattern matching
* MEM widget rewritten, uses pattern matching
- Swap widget merged with MEM widget type
* FS widget rewritten, uses pattern matching
- Also fixed padding in the process
* NET widget rewritten, uses pattern matching
* MPD widget rewritten, a bit more versatile
* Removed deprecated helper functions
* Widgets written for Vicious:
- Thermal, Battery, Mbox, OrgMode, Volume, Entropy,
Disk I/O, System Load, Wireless, Pacman, Maildir
2009-07-29 17:59:32 +02:00
|
|
|
-- {{{ Format a string with args
|
|
|
|
function format(format, args)
|
|
|
|
for var, val in pairs(args) do
|
2009-08-03 04:29:06 +02:00
|
|
|
format = string.gsub(format, "$" .. var, val)
|
Import of vicious source tree.
Vicious is a modular widget library for 'awesome' window manager,
derived from the 'Wicked' widget library.
Summary of changes:
* Original wicked code modularized
* Widgets ported from Wicked:
- CPU, MEM, FS, NET, Date, Uptime, MPD
* CPU widget rewritten, uses pattern matching
* MEM widget rewritten, uses pattern matching
- Swap widget merged with MEM widget type
* FS widget rewritten, uses pattern matching
- Also fixed padding in the process
* NET widget rewritten, uses pattern matching
* MPD widget rewritten, a bit more versatile
* Removed deprecated helper functions
* Widgets written for Vicious:
- Thermal, Battery, Mbox, OrgMode, Volume, Entropy,
Disk I/O, System Load, Wireless, Pacman, Maildir
2009-07-29 17:59:32 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
return format
|
|
|
|
end
|
|
|
|
-- }}}
|
|
|
|
|
2009-11-03 01:09:46 +01:00
|
|
|
-- {{{ Escape a string
|
Import of vicious source tree.
Vicious is a modular widget library for 'awesome' window manager,
derived from the 'Wicked' widget library.
Summary of changes:
* Original wicked code modularized
* Widgets ported from Wicked:
- CPU, MEM, FS, NET, Date, Uptime, MPD
* CPU widget rewritten, uses pattern matching
* MEM widget rewritten, uses pattern matching
- Swap widget merged with MEM widget type
* FS widget rewritten, uses pattern matching
- Also fixed padding in the process
* NET widget rewritten, uses pattern matching
* MPD widget rewritten, a bit more versatile
* Removed deprecated helper functions
* Widgets written for Vicious:
- Thermal, Battery, Mbox, OrgMode, Volume, Entropy,
Disk I/O, System Load, Wireless, Pacman, Maildir
2009-07-29 17:59:32 +02:00
|
|
|
function escape(text)
|
2009-08-03 04:29:06 +02:00
|
|
|
local xml_entities = {
|
|
|
|
["\""] = """,
|
|
|
|
["&"] = "&",
|
|
|
|
["'"] = "'",
|
|
|
|
["<"] = "<",
|
|
|
|
[">"] = ">"
|
|
|
|
}
|
|
|
|
|
|
|
|
return text and text:gsub("[\"&'<>]", xml_entities)
|
Import of vicious source tree.
Vicious is a modular widget library for 'awesome' window manager,
derived from the 'Wicked' widget library.
Summary of changes:
* Original wicked code modularized
* Widgets ported from Wicked:
- CPU, MEM, FS, NET, Date, Uptime, MPD
* CPU widget rewritten, uses pattern matching
* MEM widget rewritten, uses pattern matching
- Swap widget merged with MEM widget type
* FS widget rewritten, uses pattern matching
- Also fixed padding in the process
* NET widget rewritten, uses pattern matching
* MPD widget rewritten, a bit more versatile
* Removed deprecated helper functions
* Widgets written for Vicious:
- Thermal, Battery, Mbox, OrgMode, Volume, Entropy,
Disk I/O, System Load, Wireless, Pacman, Maildir
2009-07-29 17:59:32 +02:00
|
|
|
end
|
|
|
|
-- }}}
|
2009-08-05 22:11:11 +02:00
|
|
|
|
2009-11-03 01:09:46 +01:00
|
|
|
-- {{{ Truncate a string
|
2009-08-05 22:11:11 +02:00
|
|
|
function truncate(text, maxlen)
|
2009-08-07 23:19:50 +02:00
|
|
|
local txtlen = text:len()
|
2009-08-05 22:11:11 +02:00
|
|
|
|
|
|
|
if txtlen > maxlen then
|
2009-11-03 01:09:46 +01:00
|
|
|
text = string.sub(text, 1, maxlen - 3) .. "..."
|
|
|
|
end
|
|
|
|
|
|
|
|
return text
|
|
|
|
end
|
|
|
|
-- }}}
|
|
|
|
|
|
|
|
-- {{{ Scroll through a string
|
|
|
|
function scroll(text, maxlen, widget)
|
|
|
|
if not scroller[widget] then
|
|
|
|
scroller[widget] = { i = 1, d = true }
|
|
|
|
end
|
|
|
|
|
|
|
|
local txtlen = text:len()
|
|
|
|
local state = scroller[widget]
|
|
|
|
|
|
|
|
if txtlen > maxlen then
|
|
|
|
if state.d then
|
|
|
|
text = string.sub(text, state.i, state.i + maxlen) .. "..."
|
|
|
|
state.i = state.i + 3
|
|
|
|
|
|
|
|
if maxlen + state.i >= txtlen then
|
|
|
|
state.d = false
|
|
|
|
end
|
|
|
|
else
|
|
|
|
text = "..." .. string.sub(text, state.i, state.i + maxlen)
|
|
|
|
state.i = state.i - 3
|
|
|
|
|
|
|
|
if state.i <= 1 then
|
|
|
|
state.d = true
|
|
|
|
end
|
|
|
|
end
|
2009-08-05 22:11:11 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
return text
|
|
|
|
end
|
|
|
|
-- }}}
|
2009-11-03 01:09:46 +01:00
|
|
|
-- }}}
|