lua bindings
#2358
|
hello I installed Conky with It seems that it's not installed with Lua? Yet it is installed correctly. I'm getting an error like
Here's my Conky, which worked perfectly the last time I tested Fedora. https://github.com/neecride/GreatPanel Cairo and Lua are installed but they don't work ? |
Answered by
Caellian
May 12, 2026
Replies: 1 comment
|
On line 116 you use x11-specific surface constructor. I broke it by moving it out of On latest main branch (not a released version as of now), it's now just "conky_surface()" on both X11 and Wayland. In interrim you need |
0 replies
Answer selected by
Caellian
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
On line 116 you use x11-specific surface constructor. I broke it by moving it out of
require 'cairo'for Wayland migration.On latest main branch (not a released version as of now), it's now just "conky_surface()" on both X11 and Wayland.
In interrim you need
require 'cairo_xlib', forcairo_xlib_surface_create.