lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Wed, Jul 04, 2012 at 02:12:53AM -0700, Laurent FAILLIE wrote:
> 
> How a pure LUA process can create and then update an icon in Linux desktop's system tray ?

You can't.  Lua's written in ANSI C, and ANSI C does not have any
considerations for X.  You will almost certainly need to use a native
graphical toolkit library.  I suspect lgi can do this.

(Also, please note that Lua is not an acronym :)

B.