答え1
コンキだけではできません。 Cairoグラフィックライブラリを使用するには、いくつかのLuaプログラミングが必要です。次は重く「テキスト」cairoのサンプルコードスニペットに基づいていますhttps://www.cairgraphics.org/samples/ぜひ必要な内容を追加しました。
Luaファイル(私は名前を付けcairoclock.lua
て保存しました~/bin/lua_scripts
):
require 'cairo'
function conky_cairotext()
if conky_window == nil then return end
t=os.date("%I:%M:%S%p") -- Get Time (see Lua Ref Manual for info)
local cs=cairo_xlib_surface_create(
conky_window.display,
conky_window.drawable,
conky_window.visual,
conky_window.width,
conky_window.height
)
cr=cairo_create(cs) -- Create a Drawing Context
cairo_select_font_face (cr, "Serif", CAIRO_FONT_SLANT_NORMAL,
CAIRO_FONT_WEIGHT_NORMAL);
cairo_set_font_size (cr, 60.0);
cairo_move_to (cr, 70.0, 165.0);
cairo_text_path (cr, t);
cairo_set_source_rgb (cr, 1, 0.95, 0); -- Set Text Color
cairo_fill_preserve (cr);
cairo_set_source_rgb (cr, .24, .24, 1); -- Set Text Edge Color
cairo_set_line_width (cr, 2.60); -- Set Text Edge Width
cairo_stroke (cr);
return "" -- Not needed, but prevents constant warnings
-- when called from conky run in a terminal.
end
最小Conkyファイルテスト目的で:
conky.config = {
lua_load = '~/bin/lua_scripts/cairoclock.lua',
alignment = 'top_left',
use_xft = true,
override_utf8_locale = true,
gap_x = 0,
gap_y = 0,
minimum_width = 455,
minimum_height = 280,
own_window = true,
own_window_hints = 'below',
own_window_type = 'desktop',
own_window_argb_visual=true,
own_window_transparent = false,
own_window_colour = 'white',
double_buffer = true,
update_interval = 1,
}
conky.text = [[
${lua cairotext}
]]
結果の時計を表示