- Semantics of the
greet
option ofinotify
plugin has changed; seeplugins/inotify/README.md
for details.
-
luastatus.spawn
,luastatus.rc
andluastatus.dollar
functions have been removed. Useos.execute
and/orio.popen
instead — and please don’t forget to properly escape the arguments:function shell_escape(s) return "'" .. s:gsub("'", "'\\''") .. "'" end
-
pipe
plugin has been removed. Use thetimer
plugin andio.open
instead:f = io.popen('your command', 'r') wdiget = { plugin = 'timer', cb = function() local line = f:read('*line') -- ... end, }