[RIJEŠENO] Promjena jezika u Conky

Novi ste u svijetu Linuxa? Imate hrpu početničkih pitanja?

Moderator/ica: Moderatori/ce

Pravila foruma
PRAVILA ZA NOVE KORISNIKE LINUXA!
Prije otvaranja bilo kakve diskusije svaki novi korisnik u svijetu Linuxa obavezan je učiniti sljedeće korake:
Pročitati ove tekstove iz naše Wikipedije:
- Sve uvodne tekstove Linuxa za početnike (njih 5)
- Sve što trebate znati o radu s diskovima
- Pročitati ovu temu za početnike
- Pokušati pronaći riješenje problema u Enciklopediji znanja

Nakon toga korisnik smije otvoriti temu s naslovom svog problema uz obaveznu naznaku Linux distribucije koju koristi u formi:
[Linux distribucija, broj verzije, grafičko okruženje]: Naslov problema
U prvom postu korisnik obavezno mora odgovoriti na ova pitanja:
- Da li ima instalirane Windowse?
- Što ga je motiviralo na instaliranje i korištenje Linux distribucije?
- Obavezno je potrebno navesti specifikacije hardvera (Ime Laptopa, tip procesora, grafičke i mrežne kartice, količina RAM-a i diska)

Bez učinjenih ovih prvih koraka, na teme se neće odgovarati i one će biti izbrisane s foruma!
Odgovori
Avatar
Tribanj
Postovi: 156
Pridružen/a: 25 kol 2024, 20:38
Spol: M
OS: Linux Mint 22.2 Cinnamon

[RIJEŠENO] Promjena jezika u Conky

Post Postao/la Tribanj »

Instalirao sam Conky Manager 2.73. Imam nekoliko widgeta za Conky. Dan i mjesec su na engleskom jeziku, a ja bih to htio promijeniti na hrvatski jezik.

Radi se o Conky widgetu urgo.

desktop:

Kod: Označi sve

conky.config = {
    background = true,
    use_xft = true,
    font = 'Droid Sans:size=10',
    xftalpha = 1, 
    update_interval = 1.0,
    total_run_times = 0,
    own_window = true,
    own_window_transparent = true,
    own_window_type = 'desktop',
    own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager',
    double_buffer = true,
    minimum_width = 730,
    minimum_height = 600,
    maximum_width = 730,
    draw_shades = false,
    draw_outline = false,
    draw_borders = false,
    draw_graph_borders = false,
    default_color = '48192D',
    default_shade_color = '000000',
    default_outline_color = '828282',
    alignment = 'middle_middle',
    no_buffers = true,
    uppercase = false,
    cpu_avg_samples = 2,
    net_avg_samples = 1,
    temperature_unit = 'celsius',
    override_utf8_locale = true,
    imlib_cache_size = 0,
    default_color = 'FFFFFF',
    color0 = 'FFFFFF',
    color1 = 'FF0000',
    template9 = 'pl_PL.UTF-8',
    own_window_argb_value = 0,
    own_window_argb_visual = true,
    own_window_colour = '000000',
    gap_x = 14,
    gap_y = 34,

    pozycja_x=400,
    pozycja_y=400,
    lua_load = 'desktop.lua',
    lua_draw_hook_post = 'main',
}

conky.text = [[
${voffset 24}${font Droid Sans:weight=Bold:size=50}${color0}\
${alignc}${time %H:%M:%S}\
${font}${color}
${font Droid Sans:weight=Bold:size=28}${color1}\
${voffset 10}\
${alignc}${execi 10 LANG=${template9} LC_TIME=${template9} date +"%A, %d. %B"}\
${font}${color}
]]
desktop.lua:

Kod: Označi sve

[require 'cairo'

corner_r=35

    -- Set the colour and transparency (alpha) of your background.

bg_colour=0x000000
bg_alpha=0.0
    
line_width=0.3
line_cap=CAIRO_LINE_CAP_BUTT --we don't need this any more after closing the path
line_join=CAIRO_LINE_JOIN_MITER --but this will still affect how the lines look
red,green,blue,alpha=1,1,1,1
font="Droid Sans"
font_size=10
font_slant=CAIRO_FONT_SLANT_NORMAL
font_face=CAIRO_FONT_WEIGHT_NORMAL

pozycja_x=400
pozycja_y=400
txtxoffset=2 -- text offset
txtyoffset=2 -- text offset

--cpu0
promien_cpu0=54
width_cpu0=5
nwsk=45 -- leader angle
ramie_cpu0=165

--cpu1
promien_cpu1=54
width_cpu1=5
ramie_cpu1=165

--memperc
promien_memperc=92
width_memperc=10
kat_memperc=45 -- leader angle
ramie_mem=165

--disk /
promien_root=72
width_root=7
kat_root=75
ramie_root=165

--disk /home
promien_home=72
width_home=7
kat_home=10
ramie_home=165

--disk /windows
promien_windows=72
width_windows=7
kat_windows=160
ramie_windows=165

--battery
promien_bat=112
width_bat=10
kat_bat=10
ramie_bat=165

--wlan up
promien_wlanup=122
width_wlanup=7
kat_wlanup=95
ramie_wlanup=165

--eth up
promien_ethup=112
width_ethup=7
kat_ethup=110
ramie_ethup=165

--eth down
promien_ethdown=112
width_ethdown=7
kat_ethdown=-45
ramie_ethdown=165

--------------------------------------------------------------------------------
--                                                                    gauge DATA
gauge = {
{
    name='cpu',                    arg='cpu0',                  max_value=100,
    x=pozycja_x,                          y=pozycja_y,
    graph_radius=promien_cpu0,
    graph_thickness=width_cpu0,
    graph_start_angle=-80,
    graph_unit_angle=1.6,          graph_unit_thickness=2.7,
    graph_bg_colour=0xffffff,      graph_bg_alpha=0.0,
    graph_fg_colour=0xFFFFFF,      graph_fg_alpha=0.3,
    hand_fg_colour=0xff0000,       hand_fg_alpha=1.0,
    txt_radius=44,
    txt_weight=0,                  txt_size=9.0,
    txt_fg_colour=0xff0000,        txt_fg_alpha=1.0,
    graduation_radius=54,
    graduation_thickness=width_cpu0,        graduation_mark_thickness=2,
    graduation_unit_angle=5,
    graduation_fg_colour=0xFFFFFF, graduation_fg_alpha=0.3,
    caption='',               
    caption_weight=1,              caption_size=9.0,
    caption_fg_colour=0xFFFFFF,    caption_fg_alpha=0.3,
},
{
    name='cpu',                    arg='cpu1',                  max_value=100,
    x=pozycja_x,                          y=pozycja_y,
    graph_radius=54,
    graph_thickness=width_cpu1,
    graph_start_angle=100,
    graph_unit_angle=1.6,          graph_unit_thickness=2.7,
    graph_bg_colour=0xffffff,      graph_bg_alpha=0.0,
    graph_fg_colour=0xFFFFFF,      graph_fg_alpha=0.3,
    hand_fg_colour=0xff0000,       hand_fg_alpha=1.0,
    txt_radius=44,
    txt_weight=0,                  txt_size=9.0,
    txt_fg_colour=0xff0000,        txt_fg_alpha=1.0,
    graduation_radius=54,
    graduation_thickness=width_cpu1,        graduation_mark_thickness=2,
    graduation_unit_angle=5,
    graduation_fg_colour=0xFFFFFF, graduation_fg_alpha=0.3,
    caption='',
    caption_weight=1,              caption_size=9.0,
    caption_fg_colour=0xFFFFFF,    caption_fg_alpha=0.3,
},
{
    name='memperc',                arg='',                      max_value=100,
    x=pozycja_x,                          y=pozycja_y,
    graph_radius=promien_memperc,
    graph_thickness=width_memperc,
    graph_start_angle=184,
    graph_unit_angle=2.6,          graph_unit_thickness=2.7,
    graph_bg_colour=0xffffff,      graph_bg_alpha=0.1,
    graph_fg_colour=0xFFFFFF,      graph_fg_alpha=0.3,
    hand_fg_colour=0xff0000,       hand_fg_alpha=1.0,
    txt_radius=82,
    txt_weight=0,                  txt_size=9.0,
    txt_fg_colour=0xff0000,        txt_fg_alpha=1.0,
    graduation_radius=23,
    graduation_thickness=0,        graduation_mark_thickness=2,
    graduation_unit_angle=27,
    graduation_fg_colour=0xFFFFFF, graduation_fg_alpha=0.5,
    caption='',
    caption_weight=1,              caption_size=10.0,
    caption_fg_colour=0xFFFFFF,    caption_fg_alpha=0.3,
},
{
    name='hwmon',                   arg='1 temp 1', 
    max_value=140,                 max_rpm=100,
    x=pozycja_x,                          y=pozycja_y,
    graph_radius=promien_memperc,
    graph_thickness=width_memperc,
    graph_start_angle=88,
    graph_unit_angle=86 / 100,          graph_unit_thickness=2.7,
    graph_bg_colour=0xffffff,      graph_bg_alpha=0.1,
    graph_fg_colour=0xFFFFFF,      graph_fg_alpha=0.3,
    hand_fg_colour=0xff0000,       hand_fg_alpha=1.0,
    txt_radius=82,
    txt_weight=0,                  txt_size=9.0,
    txt_fg_colour=0xff0000,        txt_fg_alpha=1.0,
    graduation_radius=23,
    graduation_thickness=0,        graduation_mark_thickness=2,
    graduation_unit_angle=27,
    graduation_fg_colour=0xFFFFFF, graduation_fg_alpha=0.5,
    caption='',
    caption_weight=1,              caption_size=10.0,
    caption_fg_colour=0xFFFFFF,    caption_fg_alpha=0.3,
},
{
    name='fs_used_perc',           arg='/media/logansfury/Elements/',                     max_value=100,
    x=pozycja_x,                          y=pozycja_y,
    graph_radius=72,
    graph_thickness=7,
    graph_start_angle=64,
    graph_unit_angle=1.14,          graph_unit_thickness=2.7,
    graph_bg_colour=0xffffff,      graph_bg_alpha=0.1,
    graph_fg_colour=0xFFFFFF,      graph_fg_alpha=0.3,
    hand_fg_colour=0xff0000,       hand_fg_alpha=1.0,
    txt_radius=63,
    txt_weight=0,                  txt_size=9.0,
    txt_fg_colour=0xff0000,        txt_fg_alpha=1.0,
    graduation_radius=23,
    graduation_thickness=0,        graduation_mark_thickness=2,
    graduation_unit_angle=27,
    graduation_fg_colour=0xFFFFFF, graduation_fg_alpha=0.3,
    caption='',
    caption_weight=1,              caption_size=12.0,
    caption_fg_colour=0xFFFFFF,    caption_fg_alpha=0.5,
},
{
    name='fs_used_perc',           arg='/home/',                     max_value=100,
    x=pozycja_x,                          y=pozycja_y,
    graph_radius=72,
    graph_thickness=7,
    graph_start_angle=-56,
    graph_unit_angle=1.14,          graph_unit_thickness=2.7,
    graph_bg_colour=0xffffff,      graph_bg_alpha=0.1,
    graph_fg_colour=0xFFFFFF,      graph_fg_alpha=0.3,
    hand_fg_colour=0xff0000,       hand_fg_alpha=1.0,
    txt_radius=63,
    txt_weight=0,                  txt_size=9.0,
    txt_fg_colour=0xff0000,        txt_fg_alpha=1.0,
    graduation_radius=23,
    graduation_thickness=0,        graduation_mark_thickness=2,
    graduation_unit_angle=27,
    graduation_fg_colour=0xFFFFFF, graduation_fg_alpha=0.3,
    caption='',
    caption_weight=1,              caption_size=12.0,
    caption_fg_colour=0xFFFFFF,    caption_fg_alpha=0.5,
},
{
    name='fs_used_perc',           arg='/',                     max_value=100,
    x=pozycja_x,                          y=pozycja_y,
    graph_radius=promien_root,
    graph_thickness=width_root,
    graph_start_angle=184,
    graph_unit_angle=1.14,          graph_unit_thickness=2.7,
    graph_bg_colour=0xffffff,      graph_bg_alpha=0.1,
    graph_fg_colour=0xFFFFFF,      graph_fg_alpha=0.3,
    hand_fg_colour=0xff0000,       hand_fg_alpha=1.0,
    txt_radius=63,
    txt_weight=0,                  txt_size=9.0,
    txt_fg_colour=0xff0000,        txt_fg_alpha=1.0,
    graduation_radius=23,
    graduation_thickness=0,        graduation_mark_thickness=2,
    graduation_unit_angle=27,
    graduation_fg_colour=0xFFFFFF, graduation_fg_alpha=0.3,
    caption='',
    caption_weight=1,              caption_size=12.0,
    caption_fg_colour=0xFFFFFF,    caption_fg_alpha=0.5,
},
{
    name='downspeedf',           arg='enp0s31f6',                     max_value=100,
    x=pozycja_x,                          y=pozycja_y,
    graph_radius=promien_ethdown,
    graph_thickness=width_ethdown,
    graph_start_angle=120,
    graph_unit_angle=1.2,          graph_unit_thickness=5,
    graph_bg_colour=0xffffff,      graph_bg_alpha=0.0,
    graph_fg_colour=0xFFFFFF,      graph_fg_alpha=0.3,
    hand_fg_colour=0xff0000,       hand_fg_alpha=0,
    txt_radius=104,
    txt_weight=0,                  txt_size=9.0,
    txt_fg_colour=0xff0000,        txt_fg_alpha=1.0,
    graduation_radius=112,
    graduation_thickness=7,        graduation_mark_thickness=1,
    graduation_unit_angle=2,
    graduation_fg_colour=0xFFFFFF, graduation_fg_alpha=0.1,
    caption='',
    caption_weight=1,              caption_size=12.0,
    caption_fg_colour=0xFFFFFF,    caption_fg_alpha=0.5,
},
{
    name='upspeedf',           arg='enp0s31f6',                     max_value=100,
    x=pozycja_x,                          y=pozycja_y,
    graph_radius=promien_ethup,
    graph_thickness=width_ethup,
    graph_start_angle=-60,
    graph_unit_angle=1.2,          graph_unit_thickness=2.7,
    graph_bg_colour=0xffffff,      graph_bg_alpha=0.0,
    graph_fg_colour=0xFFFFFF,      graph_fg_alpha=0.3,
    hand_fg_colour=0xff0000,       hand_fg_alpha=0,
    txt_radius=104,
    txt_weight=0,                  txt_size=9.0,
    txt_fg_colour=0xff0000,        txt_fg_alpha=1.0,
    graduation_radius=112,
    graduation_thickness=7,        graduation_mark_thickness=1,
    graduation_unit_angle=2,
    graduation_fg_colour=0xffffff, graduation_fg_alpha=0.1,
    caption='',
    caption_weight=1,              caption_size=12.0,
    caption_fg_colour=0xFFFFFF,    caption_fg_alpha=0.5,
},
{
    name='downspeedf',           arg='wlp3s0',                     max_value=100,
    x=pozycja_x,                          y=pozycja_y,
    graph_radius=122,
    graph_thickness=7,
    graph_start_angle=120,
    graph_unit_angle=1.2,          graph_unit_thickness=5,
    graph_bg_colour=0xffffff,      graph_bg_alpha=0.0,
    graph_fg_colour=0xFFFFFF,      graph_fg_alpha=0.3,
    hand_fg_colour=0xff0000,       hand_fg_alpha=0,
    txt_radius=134,
    txt_weight=0,                  txt_size=9.0,
    txt_fg_colour=0xff0000,        txt_fg_alpha=1.0,
    graduation_radius=112,
    graduation_thickness=7,        graduation_mark_thickness=1,
    graduation_unit_angle=2,
    graduation_fg_colour=0xFFFFFF, graduation_fg_alpha=0.1,
    caption='',
    caption_weight=1,              caption_size=12.0,
    caption_fg_colour=0xFFFFFF,    caption_fg_alpha=0.5,
},
{
    name='upspeedf',           arg='wlp3s0',                     max_value=100,
    x=pozycja_x,                          y=pozycja_y,
    graph_radius=122,
    graph_thickness=7,
    graph_start_angle=-60,
    graph_unit_angle=1.2,          graph_unit_thickness=2.7,
    graph_bg_colour=0xffffff,      graph_bg_alpha=0.0,
    graph_fg_colour=0xFFFFFF,      graph_fg_alpha=0.3,
    hand_fg_colour=0xff0000,       hand_fg_alpha=0,
    txt_radius=134,
    txt_weight=0,                  txt_size=9.0,
    txt_fg_colour=0xff0000,        txt_fg_alpha=1.0,
    graduation_radius=112,
    graduation_thickness=7,        graduation_mark_thickness=1,
    graduation_unit_angle=2,
    graduation_fg_colour=0xffffff, graduation_fg_alpha=0.1,
    caption='',
    caption_weight=1,              caption_size=12.0,
    caption_fg_colour=0xFFFFFF,    caption_fg_alpha=0.5,
},
{
     name='cpu',                    arg='cpu3',                  max_value=100,
    x=pozycja_x,                          y=pozycja_y,
    graph_radius=promien_bat,
    graph_thickness=width_bat,
    graph_start_angle=250,
    graph_unit_angle=0.4,          graph_unit_thickness=2.7,
    graph_bg_colour=0xffffff,      graph_bg_alpha=0.1,
    graph_fg_colour=0xFFFFFF,      graph_fg_alpha=0.3,
    hand_fg_colour=0xff0000,       hand_fg_alpha=1.0,
    txt_radius=100,
    txt_weight=0,                  txt_size=9.0,
    txt_fg_colour=0xff0000,        txt_fg_alpha=1.0,
    graduation_radius=23,
    graduation_thickness=0,        graduation_mark_thickness=2,
    graduation_unit_angle=27,
    graduation_fg_colour=0xFFFFFF, graduation_fg_alpha=0.5,
    caption='',
    caption_weight=1,              caption_size=10.0,
    caption_fg_colour=0xFFFFFF,    caption_fg_alpha=0.3,
},
{
    name='cpu',                arg='cpu4',                      max_value=100,
    x=pozycja_x,                          y=pozycja_y,
    graph_radius=promien_bat,
    graph_thickness=width_bat,
    graph_start_angle=72,
    graph_unit_angle=0.4,          graph_unit_thickness=2.7,
    graph_bg_colour=0xffffff,      graph_bg_alpha=0.1,
    graph_fg_colour=0xFFFFFF,      graph_fg_alpha=0.3,
    hand_fg_colour=0xff0000,       hand_fg_alpha=1.0,
    txt_radius=100,
    txt_weight=0,                  txt_size=9.0,
    txt_fg_colour=0xff0000,        txt_fg_alpha=1.0,
    graduation_radius=23,
    graduation_thickness=0,        graduation_mark_thickness=2,
    graduation_unit_angle=27,
    graduation_fg_colour=0xFFFFFF, graduation_fg_alpha=0.5,
    caption='',
    caption_weight=1,              caption_size=10.0,
    caption_fg_colour=0xFFFFFF,    caption_fg_alpha=0.3,
},
}

-------------------------------------------------------------------------------
--                                                                 rgb_to_r_g_b
-- converts color in hexa to decimal
--
function rgb_to_r_g_b(colour, alpha)
    return ((colour / 0x10000) % 0x100) / 255., ((colour / 0x100) % 0x100) / 255., (colour % 0x100) / 255., alpha
end

-------------------------------------------------------------------------------
--                                                            angle_to_position
-- convert degree to rad and rotate (0 degree is top/north)
--
function angle_to_position(start_angle, current_angle)
    local pos = current_angle + start_angle
    return ( ( pos * (2 * math.pi / 360) ) - (math.pi / 2) )
end


-------------------------------------------------------------------------------
--                                                              draw_gauge_ring
-- displays gauges
--
        
    function draw_bg()
        
        if conky_window==nil then return end
        local w=conky_window.width
        local h=700 --conky_window.height
        local cs=cairo_xlib_surface_create(conky_window.display, conky_window.drawable, conky_window.visual, w, h)
        cr=cairo_create(cs)
       
        cairo_move_to(cr,corner_r,0)
        cairo_line_to(cr,w-corner_r,0)
        cairo_curve_to(cr,w,0,w,0,w,corner_r)
        cairo_line_to(cr,w,h-corner_r)
        cairo_curve_to(cr,w,h,w,h,w-corner_r,h)
        cairo_line_to(cr,corner_r,h)
        cairo_curve_to(cr,0,h,0,h,0,h-corner_r)
        cairo_line_to(cr,0,corner_r)
        cairo_curve_to(cr,0,0,0,0,corner_r,0)
        cairo_close_path(cr)
       
        cairo_set_source_rgba(cr,rgb_to_r_g_b(bg_colour,bg_alpha))
        cairo_fill(cr)
        
        cairo_set_line_width (cr,line_width)
        cairo_set_line_cap  (cr, line_cap)
        cairo_set_source_rgba (cr,red,green,blue,alpha)
 
        --tekst setup
        cairo_select_font_face (cr, font, font_slant, font_face);
        cairo_set_font_size (cr, font_size)
        cairo_set_source_rgba (cr,red,green,blue,alpha)
        
        --cpu1
        cairo_move_to (cr,pozycja_x+math.cos(nwsk*3.142/180)*(promien_cpu0+width_cpu0),pozycja_y-math.sin(nwsk*3.142/180)*(promien_cpu0+width_cpu0))
        cairo_line_to (cr,pozycja_x+math.cos(nwsk*3.142/180)*ramie_cpu0,pozycja_y-math.sin(nwsk*3.142/180)*ramie_cpu0)
        cairo_line_to (cr,pozycja_x+math.cos(nwsk*3.142/180)*ramie_cpu0+124,pozycja_y-math.sin(nwsk*3.142/180)*ramie_cpu0)
        cairo_stroke (cr)
        cairo_move_to (cr,pozycja_x+math.cos(nwsk*3.142/180)*ramie_cpu0+txtxoffset,pozycja_y-math.sin(nwsk*3.142/180)*ramie_cpu0-txtyoffset)
        cairo_show_text (cr,"cpu1: "..conky_parse("${cpu cpu1}").."%, "..conky_parse("${freq_g cpu1}").."Ghz, "..conky_parse("${hwmon 4 temp 1}").."°C")
        cairo_stroke (cr)

--cpu4
-- Draw horizontal line (128 pixels long)
cairo_move_to(cr, pozycja_x + 290, pozycja_y -28)  -- Start at the right end of the horizontal line
cairo_line_to(cr, pozycja_x + 290 - 128, pozycja_y -28)  -- Draw the horizontal line to the left by 128 pixels

-- Draw diagonal line connecting to the top-left of the horizontal line
cairo_line_to(cr, pozycja_x + 290 - 154 - 14.14, pozycja_y -28 + 14.14) -- Half the original diagonal length
cairo_stroke(cr)

-- Display text
cairo_move_to(cr, pozycja_x + 2 + math.cos(nwsk * 3.202 / 1200) * ramie_cpu0 + txtxoffset -2, pozycja_y -9 - math.sin(nwsk * 3.202 / 1200) * ramie_cpu0 - txtyoffset)
cairo_show_text(cr, "cpu4: " .. conky_parse("${cpu cpu4}") .. "%, " .. conky_parse("${freq_g cpu4}") .. "Ghz, " .. conky_parse("${hwmon 4 temp 1}") .. "°C")
cairo_stroke(cr)
        
        --cpu2
        cairo_move_to (cr,pozycja_x+math.cos(nwsk*3.142/180)*(promien_cpu1+width_cpu1),pozycja_y+math.sin(nwsk*3.142/180)*(promien_cpu1+width_cpu1))
        cairo_line_to (cr,pozycja_x+math.cos(nwsk*3.142/180)*ramie_cpu1,pozycja_y+math.sin(nwsk*3.142/180)*ramie_cpu1)
        cairo_line_to (cr,pozycja_x+math.cos(nwsk*3.142/180)*ramie_cpu1+124,pozycja_y+math.sin(nwsk*3.142/180)*ramie_cpu1)
        cairo_stroke (cr)  
        cairo_move_to (cr,pozycja_x+math.cos(nwsk*3.142/180)*ramie_cpu1+txtxoffset,pozycja_y+math.sin(nwsk*3.142/180)*ramie_cpu1-txtyoffset)
        cairo_show_text (cr,"cpu2: "..conky_parse("${cpu cpu2}").."%, "..conky_parse("${freq_g cpu2}").."Ghz, "..conky_parse("${hwmon 4 temp 1}").."°C")
        cairo_stroke (cr)
        cairo_move_to (cr,pozycja_x+math.cos(nwsk*3.142/180)*ramie_cpu1+txtxoffset,pozycja_y+math.sin(nwsk*3.142/180)*ramie_cpu1+20-txtyoffset)
        cairo_show_text (cr,conky_parse("${top name 1 }")..conky_parse("${top cpu 1}").."%")
        cairo_stroke (cr)
        cairo_move_to (cr,pozycja_x+math.cos(nwsk*3.142/180)*ramie_cpu1+txtxoffset,pozycja_y+math.sin(nwsk*3.142/180)*ramie_cpu1+30-txtyoffset)
        cairo_show_text (cr,conky_parse("${top name 2 }")..conky_parse("${top cpu 2}").."%")
        cairo_stroke (cr)
        cairo_move_to (cr,pozycja_x+math.cos(nwsk*3.142/180)*ramie_cpu1+txtxoffset,pozycja_y+math.sin(nwsk*3.142/180)*ramie_cpu1+40-txtyoffset)
        cairo_show_text (cr,conky_parse("${top name 3 }")..conky_parse("${top cpu 3}").."%")
        cairo_stroke (cr)
        cairo_move_to (cr,pozycja_x+math.cos(nwsk*3.142/180)*ramie_cpu1+txtxoffset,pozycja_y+math.sin(nwsk*3.142/180)*ramie_cpu1+50-txtyoffset)
        cairo_show_text (cr,conky_parse("${top name 4 }")..conky_parse("${top cpu 4}").."%")
        cairo_stroke (cr)
        
        --memperc
        cairo_move_to (cr,pozycja_x-math.cos(kat_memperc*3.142/180)*(promien_memperc+width_memperc),pozycja_y+math.sin(kat_memperc*3.142/180)*(promien_memperc+width_memperc))
        cairo_line_to (cr,pozycja_x-math.cos(kat_memperc*3.142/180)*ramie_mem,pozycja_y+math.sin(kat_memperc*3.142/180)*ramie_mem)
        cairo_line_to (cr,pozycja_x-math.cos(kat_memperc*3.142/180)*ramie_mem-125,pozycja_y+math.sin(kat_memperc*3.142/180)*ramie_mem)
        cairo_stroke (cr)  
        cairo_move_to (cr,pozycja_x-math.cos(kat_memperc*3.142/180)*ramie_mem-125+txtxoffset,pozycja_y+math.sin(kat_memperc*3.142/180)*ramie_mem-txtyoffset);cairo_show_text (cr,"mem: "..conky_parse("${mem}").." / "..conky_parse("${memmax}"))
        cairo_stroke (cr)
        cairo_move_to (cr,pozycja_x-math.cos(kat_memperc*3.142/180)*ramie_mem-125+txtxoffset,pozycja_y+math.sin(kat_memperc*3.142/180)*ramie_mem+20-txtyoffset);cairo_show_text (cr,conky_parse("${top_mem name 1}")..conky_parse("${top_mem mem 1}").."%")
        cairo_stroke (cr)
        cairo_move_to (cr,pozycja_x-math.cos(kat_memperc*3.142/180)*ramie_mem-125+txtxoffset,pozycja_y+math.sin(kat_memperc*3.142/180)*ramie_mem+30-txtyoffset);cairo_show_text (cr,conky_parse("${top_mem name 2}")..conky_parse("${top_mem mem 2}").."%")
        cairo_stroke (cr)
        cairo_move_to (cr,pozycja_x-math.cos(kat_memperc*3.142/180)*ramie_mem-125+txtxoffset,pozycja_y+math.sin(kat_memperc*3.142/180)*ramie_mem+40-txtyoffset);cairo_show_text (cr,conky_parse("${top_mem name 3}")..conky_parse("${top_mem mem 3}").."%")
        cairo_stroke (cr)
        cairo_move_to (cr,pozycja_x-math.cos(kat_memperc*3.142/180)*ramie_mem-125+txtxoffset,pozycja_y+math.sin(kat_memperc*3.142/180)*ramie_mem+50-txtyoffset);cairo_show_text (cr,conky_parse("${top_mem name 4}")..conky_parse("${top_mem mem 4}").."%")
        cairo_stroke (cr)
        
        --disk root
        cairo_move_to (cr,pozycja_x-math.cos(kat_root*3.142/180)*(promien_root+width_root),pozycja_y-math.sin(kat_root*3.142/180)*(promien_root+width_root))
        cairo_line_to (cr,pozycja_x-math.cos(kat_root*3.142/180)*ramie_root,pozycja_y-math.sin(kat_root*3.142/180)*ramie_root)
        cairo_line_to (cr,pozycja_x-math.cos(kat_root*3.142/180)*ramie_root+210,pozycja_y-math.sin(kat_root*3.142/180)*ramie_root)
        cairo_stroke (cr)
        cairo_move_to (cr,pozycja_x-math.cos(kat_root*3.142/180)*ramie_root+txtxoffset,pozycja_y-math.sin(kat_root*3.142/180)*ramie_root-10-txtyoffset);cairo_show_text (cr,"root "..conky_parse("${fs_size /}").." "..conky_parse("${fs_type /}"))
        cairo_stroke (cr)
        cairo_move_to (cr,pozycja_x-math.cos(kat_root*3.142/180)*ramie_root+txtxoffset,pozycja_y-math.sin(kat_root*3.142/180)*ramie_root-txtyoffset)
        cairo_show_text (cr,conky_parse("${fs_free /}").." ("..conky_parse("${fs_free_perc /}").."%) free -- "..conky_parse("${fs_used /}").." ("..conky_parse("${fs_used_perc /}").."%) used")
        cairo_stroke (cr)
       
        --disk home
        cairo_move_to (cr,pozycja_x-math.cos(kat_home*3.142/180)*(promien_home+width_home),pozycja_y-math.sin(kat_home*3.142/180)*(promien_home+width_home))
        cairo_line_to (cr,pozycja_x-math.cos(kat_home*3.142/180)*ramie_home,pozycja_y-math.sin(kat_home*3.142/180)*ramie_home)
        cairo_line_to (cr,pozycja_x-math.cos(kat_home*3.142/180)*ramie_home-200,pozycja_y-math.sin(kat_home*3.142/180)*ramie_home)
        cairo_stroke (cr)
        cairo_move_to (cr,pozycja_x-math.cos(kat_home*3.142/180)*ramie_home-200+txtxoffset,pozycja_y-math.sin(kat_home*3.142/180)*ramie_home-10-txtyoffset)
        cairo_show_text (cr,"home "..conky_parse("${fs_size /home}").." "..conky_parse("${fs_type /home}"))
        cairo_stroke (cr)        
        cairo_move_to (cr,pozycja_x-math.cos(kat_home*3.142/180)*ramie_home-200+txtxoffset,pozycja_y-math.sin(kat_home*3.142/180)*ramie_home-txtyoffset)
        cairo_show_text (cr,conky_parse("${fs_free /home}").." ("..conky_parse("${fs_free_perc /home}").."%) free -- "..conky_parse("${fs_used /home}").." ("..conky_parse("${fs_used_perc /home}").."%) used")
        cairo_stroke (cr)
        
        --disk Elements
        pozycja_y = pozycja_y - 6
        cairo_move_to (cr,pozycja_x-math.cos(kat_windows*3.142/180)*(promien_windows+width_windows),pozycja_y-math.sin(kat_windows*3.142/180)*(promien_windows+width_windows))
        cairo_line_to (cr,pozycja_x-math.cos(kat_windows*3.142/180)*ramie_windows,pozycja_y-math.sin(kat_windows*3.142/180)*ramie_windows)
        cairo_line_to (cr,pozycja_x-math.cos(kat_windows*3.142/180)*ramie_windows+200,pozycja_y-math.sin(kat_windows*3.142/180)*ramie_windows)
        cairo_stroke (cr)
        cairo_move_to (cr,pozycja_x-math.cos(kat_windows*3.142/180)*ramie_windows+txtxoffset,pozycja_y-1-math.sin(kat_windows*3.142/180)*ramie_windows-10-txtyoffset)
        cairo_show_text (cr,"Aplikacije i ostalo "..conky_parse("${fs_size /media/mandak/Aplikacije i ostalo}").." "..conky_parse("${fs_type /media/mandak/Aplikacije i ostalo}"))
        cairo_stroke (cr)        
        cairo_move_to (cr,pozycja_x-math.cos(kat_windows*3.142/180)*ramie_windows+txtxoffset,pozycja_y-1-math.sin(kat_windows*3.142/180)*ramie_windows-txtyoffset)
        cairo_show_text (cr,conky_parse("${fs_free /media/mandak/Aplikacije i ostalo}").." ("..conky_parse("${fs_free_perc /media/mandak/Aplikacije i ostalo}").."%) free -- "..conky_parse("${fs_used /media/mandak/Aplikacije i ostalo}").." ("..conky_parse("${fs_used_perc /media/mandak/Aplikacije i ostalo}").."%) used")
        cairo_stroke (cr)
        pozycja_y = pozycja_y + 6        

 --cpu3
                cairo_move_to (cr,pozycja_x-math.cos(kat_bat*3.142/180)*(promien_bat+width_bat),pozycja_y+math.sin(kat_bat*3.142/180)*(promien_bat+width_bat))
        cairo_line_to(cr,pozycja_x-math.cos(kat_bat*3.142/180)*ramie_bat,pozycja_y+math.sin(kat_bat*3.142/180)*ramie_bat)
        cairo_line_to(cr,pozycja_x-math.cos(kat_bat*3.142/180)*ramie_bat-128,pozycja_y+math.sin(kat_bat*3.142/180)*ramie_bat)
        cairo_stroke(cr)
        cairo_move_to (cr,pozycja_x-math.cos(kat_bat*3.142/180)*ramie_bat-50+txtxoffset,pozycja_y+math.sin(kat_bat*3.142/180)*ramie_bat-txtyoffset)
        cairo_move_to(cr, pozycja_x - 288, pozycja_y + 26)                        
        cairo_show_text (cr,"cpu3: "..conky_parse("${cpu cpu3}").."%, "..conky_parse("${freq_g cpu3}").."Ghz, "..conky_parse("${hwmon 4 temp 1}").."°C")
        cairo_stroke (cr)
        cairo_stroke (cr) 

-- GPU temp  
cairo_move_to(cr, pozycja_x + 264, pozycja_y +6)  -- Start at the right end of the horizontal line
cairo_line_to(cr, pozycja_x + 304 - 128, pozycja_y +6)  -- Draw the horizontal line to the left by 140 pixels
-- Draw diagonal line connecting to the top-left of the horizontal line
cairo_line_to(cr, pozycja_x + 264 - 140 - 28.28, pozycja_y +6 + 28.28) -- Diagonal length reduced and direction corrected
cairo_stroke(cr)
cairo_move_to(cr, pozycja_x +14 + math.cos(nwsk * 3.202 / 1200) * ramie_cpu0 + txtxoffset -2, pozycja_y +26 - math.sin(nwsk * 3.202 / 1200) * ramie_cpu0 - txtyoffset)
cairo_show_text(cr, "GPU: " .. conky_parse("${hwmon 5 temp 1}") ..  "°C")
cairo_stroke(cr)

        --eth up
        cairo_move_to (cr,pozycja_x-math.cos(kat_ethup*3.142/180)*(promien_ethup+width_ethup),pozycja_y+math.sin(kat_ethup*3.142/180)*(promien_ethup+width_ethup))
        cairo_line_to(cr,pozycja_x-math.cos(kat_ethup*3.142/180)*ramie_ethup,pozycja_y+math.sin(kat_ethup*3.142/180)*ramie_ethup)
        cairo_line_to(cr,pozycja_x-math.cos(kat_ethup*3.142/180)*ramie_ethup-140,pozycja_y+math.sin(kat_ethup*3.142/180)*ramie_ethup)
        cairo_stroke(cr)        
        cairo_move_to (cr,pozycja_x-math.cos(kat_ethup*3.142/180)*ramie_ethup-140+txtxoffset,pozycja_y+math.sin(kat_ethup*3.142/180)*ramie_ethup-txtyoffset)
        cairo_show_text (cr,"enp4s0 up:"..conky_parse("${totalup enp4s0}").."/"..conky_parse("${upspeed enp4s0}"))
        cairo_stroke (cr)
        
--eth down
        cairo_move_to (cr,pozycja_x-math.cos(kat_ethdown*3.142/180)*(promien_ethdown+width_ethdown),pozycja_y+math.sin(kat_ethdown*3.142/180)*(promien_ethdown+width_ethdown))
        cairo_line_to(cr,pozycja_x-math.cos(kat_ethdown*3.142/180)*ramie_ethdown,pozycja_y+math.sin(kat_ethdown*3.142/180)*ramie_ethdown)
        cairo_line_to(cr,pozycja_x-math.cos(kat_ethdown*3.142/180)*ramie_ethdown-140,pozycja_y+math.sin(kat_ethdown*3.142/180)*ramie_ethdown)
        cairo_stroke(cr)        
        cairo_move_to (cr,pozycja_x-math.cos(kat_ethdown*3.142/180)*ramie_ethdown-140+txtxoffset,pozycja_y+math.sin(kat_ethdown*3.142/180)*ramie_ethdown-txtyoffset)
        cairo_show_text (cr,"enp4s0 down:"..conky_parse("${totaldown enp4s0}").."/"..conky_parse("${downspeed enp4s0}"))
        cairo_stroke (cr)

    end
        
        
function draw_gauge_ring(display, data, value)
    local max_value = data['max_value']
    local x, y = data['x'], data['y']
    local graph_radius = data['graph_radius']
    local graph_thickness, graph_unit_thickness = data['graph_thickness'], data['graph_unit_thickness']
    local graph_start_angle = data['graph_start_angle']
    local graph_unit_angle = data['graph_unit_angle']
    local graph_bg_colour, graph_bg_alpha = data['graph_bg_colour'], data['graph_bg_alpha']
    local graph_fg_colour, graph_fg_alpha = data['graph_fg_colour'], data['graph_fg_alpha']
    local hand_fg_colour, hand_fg_alpha = data['hand_fg_colour'], data['hand_fg_alpha']
    local graph_end_angle = (max_value * graph_unit_angle) % 360

    -- background ring
    cairo_arc(display, x, y, graph_radius, angle_to_position(graph_start_angle, 0), angle_to_position(graph_start_angle, graph_end_angle))
    cairo_set_source_rgba(display, rgb_to_r_g_b(graph_bg_colour, graph_bg_alpha))
    cairo_set_line_width(display, graph_thickness)
    cairo_stroke(display)

    -- arc of value
    local val = value % (max_value + 1)
    local start_arc = 0
    local stop_arc = 0
    local i = 1
    while i <= val do
        start_arc = (graph_unit_angle * i) - graph_unit_thickness
        stop_arc = (graph_unit_angle * i)
        cairo_arc(display, x, y, graph_radius, angle_to_position(graph_start_angle, start_arc), angle_to_position(graph_start_angle, stop_arc))
        cairo_set_source_rgba(display, rgb_to_r_g_b(graph_fg_colour, graph_fg_alpha))
        cairo_stroke(display)
        i = i + 1
    end
    local angle = start_arc

    -- hand
    start_arc = (graph_unit_angle * val) - (graph_unit_thickness * 2)
    stop_arc = (graph_unit_angle * val)
    cairo_arc(display, x, y, graph_radius, angle_to_position(graph_start_angle, start_arc), angle_to_position(graph_start_angle, stop_arc))
    cairo_set_source_rgba(display, rgb_to_r_g_b(hand_fg_colour, hand_fg_alpha))
    cairo_stroke(display)

    -- graduations marks
    local graduation_radius = data['graduation_radius']
    local graduation_thickness, graduation_mark_thickness = data['graduation_thickness'], data['graduation_mark_thickness']
    local graduation_unit_angle = data['graduation_unit_angle']
    local graduation_fg_colour, graduation_fg_alpha = data['graduation_fg_colour'], data['graduation_fg_alpha']
    if graduation_radius > 0 and graduation_thickness > 0 and graduation_unit_angle > 0 then
        local nb_graduation = graph_end_angle / graduation_unit_angle
        local i = 0
        while i < nb_graduation do
            cairo_set_line_width(display, graduation_thickness)
            start_arc = (graduation_unit_angle * i) - (graduation_mark_thickness / 2)
            stop_arc = (graduation_unit_angle * i) + (graduation_mark_thickness / 2)
            cairo_arc(display, x, y, graduation_radius, angle_to_position(graph_start_angle, start_arc), angle_to_position(graph_start_angle, stop_arc))
            cairo_set_source_rgba(display,rgb_to_r_g_b(graduation_fg_colour,graduation_fg_alpha))
            cairo_stroke(display)
            cairo_set_line_width(display, graph_thickness)
            i = i + 1
        end
    end

    -- text
    local txt_radius = data['txt_radius']
    local txt_weight, txt_size = data['txt_weight'], data['txt_size']
    local txt_fg_colour, txt_fg_alpha = data['txt_fg_colour'], data['txt_fg_alpha']
    local movex = txt_radius * math.cos(angle_to_position(graph_start_angle, angle))
    local movey = txt_radius * math.sin(angle_to_position(graph_start_angle, angle))
    cairo_select_font_face (display, "ubuntu", CAIRO_FONT_SLANT_NORMAL, txt_weight)
    cairo_set_font_size (display, txt_size)
    cairo_set_source_rgba (display, rgb_to_r_g_b(txt_fg_colour, txt_fg_alpha))
    cairo_move_to (display, x + movex - (txt_size / 2), y + movey + 3)
    cairo_show_text (display, value)
    cairo_stroke (display)

    -- caption
    local caption = data['caption']
    local caption_weight, caption_size = data['caption_weight'], data['caption_size']
    local caption_fg_colour, caption_fg_alpha = data['caption_fg_colour'], data['caption_fg_alpha']
    local tox = graph_radius * (math.cos((graph_start_angle * 2 * math.pi / 360)-(math.pi/2)))
    local toy = graph_radius * (math.sin((graph_start_angle * 2 * math.pi / 360)-(math.pi/2)))
    cairo_select_font_face (display, "ubuntu", CAIRO_FONT_SLANT_NORMAL, caption_weight);
    cairo_set_font_size (display, caption_size)
    cairo_set_source_rgba (display, rgb_to_r_g_b(caption_fg_colour, caption_fg_alpha))
    cairo_move_to (display, x + tox + 5, y + toy + 1)
    -- bad hack but not enough time !
    if graph_start_angle < 105 then
        cairo_move_to (display, x + tox - 30, y + toy + 1)
    end
    cairo_show_text (display, caption)
    cairo_stroke (display)
end


-------------------------------------------------------------------------------
--                                                               go_gauge_rings
-- loads data and displays gauges
--
function go_gauge_rings(display)
    local function load_gauge_rings(display, data)
        local str, value = '', 0
        str = string.format('${%s %s}',data['name'], data['arg'])
        str = conky_parse(str)
        value = tonumber(str)
        draw_gauge_ring(display, data, value)
    end
    
    for i in pairs(gauge) do
        load_gauge_rings(display, gauge[i])
    end
end

-------------------------------------------------------------------------------
--                                                                         MAIN
function conky_main()
    if conky_window == nil then 
        return
    end

    local cs = cairo_xlib_surface_create(conky_window.display, conky_window.drawable, conky_window.visual, conky_window.width, conky_window.height)
    local display = cairo_create(cs)
    
    local updates = conky_parse('${updates}')
    update_num = tonumber(updates)
    
    if update_num > 5 then
        go_gauge_rings(display)
        draw_bg()
    end

    cairo_surface_destroy(cs)
    cairo_destroy(display)

    
end
/code]

Linux Mint 22 Cinnamon.
Zadnja izmjena: Tribanj, dana/u 27 kol 2024, 07:38, ukupno mijenjano 1 put.
Linux Mint 22.3 "Zena" Cinnamon / Samsung Galaxy A55 5G

MB: ASRock B550M Pro4 / CPU: AMD Ryzen 5 PRO 4650G / GPU int. in CPU Radeon RX Vega 7 Renoir / RAM Memory: Corsair Vengeance LPX 16GB
Avatar
bertone
Site Admin
Postovi: 11554
Pridružen/a: 01 kol 2012, 12:39
Spol: M
OS: LMDE 6

Re: Promjena jezika u Conky

Post Postao/la bertone »

Dobrodošao na forum, na žalost ne mogu pomoći (možda netko drugi može) jer mi je trebalo par minuta da se uopće sjetim što je Conky (ni ne sjećam se kad sam ga zadnji put koristio) :-D
[+ Prikaži] Klik
ThinkPad T14s Gen. 1
AMD Ryzen 7 PRO 4750U
16 GB DDR4-3200
Samsung SSD 970 EVO Plus 2TB
14" FHD IPS (Innolux N140HCG-GQ2)
WiFi Intel® Wi-Fi® 6 AX200
OS: LMDE 6
Slika: [url=https://i.postimg.cc/fs6gNqZt/Slika-zas ... -58-57.png[/url]

***

ZEN
"Charlie. What are you thinking?"
"I'm thinking about what I want and what I need."
"What do you want?"
"I want a peaceful soul."
"And what do you need?"
"I need a bigger gun."
Avatar
Tribanj
Postovi: 156
Pridružen/a: 25 kol 2024, 20:38
Spol: M
OS: Linux Mint 22.2 Cinnamon

Re: Promjena jezika u Conky

Post Postao/la Tribanj »

bertone je napisao/la: 26 kol 2024, 15:28 Dobrodošao na forum, na žalost ne mogu pomoći (možda netko drugi može) jer mi je trebalo par minuta da se uopće sjetim što je Conky (ni ne sjećam se kad sam ga zadnji put koristio) :-D
U redu. Hvala.
Linux Mint 22.3 "Zena" Cinnamon / Samsung Galaxy A55 5G

MB: ASRock B550M Pro4 / CPU: AMD Ryzen 5 PRO 4650G / GPU int. in CPU Radeon RX Vega 7 Renoir / RAM Memory: Corsair Vengeance LPX 16GB
Avatar
Tribanj
Postovi: 156
Pridružen/a: 25 kol 2024, 20:38
Spol: M
OS: Linux Mint 22.2 Cinnamon

Re: Promjena jezika u Conky

Post Postao/la Tribanj »

Riješio sam problem.

Samo je u skripti desktop umjesto pl_PL trebalo upisati hr_HR i spremiti to.

slika
Linux Mint 22.3 "Zena" Cinnamon / Samsung Galaxy A55 5G

MB: ASRock B550M Pro4 / CPU: AMD Ryzen 5 PRO 4650G / GPU int. in CPU Radeon RX Vega 7 Renoir / RAM Memory: Corsair Vengeance LPX 16GB
Avatar
bertone
Site Admin
Postovi: 11554
Pridružen/a: 01 kol 2012, 12:39
Spol: M
OS: LMDE 6

Re: [RIJEŠENO] Promjena jezika u Conky

Post Postao/la bertone »

Super, aj jedan screenshot kak to danas izgleda ;)
[+ Prikaži] Klik
ThinkPad T14s Gen. 1
AMD Ryzen 7 PRO 4750U
16 GB DDR4-3200
Samsung SSD 970 EVO Plus 2TB
14" FHD IPS (Innolux N140HCG-GQ2)
WiFi Intel® Wi-Fi® 6 AX200
OS: LMDE 6
Slika: [url=https://i.postimg.cc/fs6gNqZt/Slika-zas ... -58-57.png[/url]

***

ZEN
"Charlie. What are you thinking?"
"I'm thinking about what I want and what I need."
"What do you want?"
"I want a peaceful soul."
"And what do you need?"
"I need a bigger gun."
Avatar
Tribanj
Postovi: 156
Pridružen/a: 25 kol 2024, 20:38
Spol: M
OS: Linux Mint 22.2 Cinnamon

Re: [RIJEŠENO] Promjena jezika u Conky

Post Postao/la Tribanj »

bertone je napisao/la: 27 kol 2024, 13:56 Super, aj jedan screenshot kak to danas izgleda ;)
Sada izgleda ovako:

slika
Linux Mint 22.3 "Zena" Cinnamon / Samsung Galaxy A55 5G

MB: ASRock B550M Pro4 / CPU: AMD Ryzen 5 PRO 4650G / GPU int. in CPU Radeon RX Vega 7 Renoir / RAM Memory: Corsair Vengeance LPX 16GB
Avatar
Cooleech
Moderator
Postovi: 7024
Pridružen/a: 13 stu 2010, 21:12
Spol: M
OS: Arch Linux KDE
Lokacija: /hrvatska/solin/

Re: Promjena jezika u Conky

Post Postao/la Cooleech »

Tribanj je napisao/la: 27 kol 2024, 07:37 Riješio sam problem.

Samo je u skripti desktop umjesto pl_PL trebalo upisati hr_HR i spremiti to.

slika
Pregledavajući ove dvije datoteke koje si poslao u prvom postu, vidio sam ovaj dio pl_PL i odmah posumnjao na to, ali nisam bio siguran da će to riješiti problem iz dva razloga; prvi je što nikad nisam koristio conky, a drugi je što nisam znao da Poljaci koriste sintaksu datuma i sata kao ameri. :pogled_dolje
Vl@do je napisao/la:Arch imaš upravo zato da uštediš na vremenu. Nemaš nikakvih problema s instalacijama, kompajliranjem i ostalim. Imaš jednostavno funkcionalan i stabilan, uvijek najsvježiji OS, a osim toga je sexy i cool do neba.
I've seen some idiots back in my time, but you man... you're special!
Avatar
Tribanj
Postovi: 156
Pridružen/a: 25 kol 2024, 20:38
Spol: M
OS: Linux Mint 22.2 Cinnamon

Re: Promjena jezika u Conky

Post Postao/la Tribanj »

Cooleech je napisao/la: 28 kol 2024, 07:19
Tribanj je napisao/la: 27 kol 2024, 07:37 Riješio sam problem.

Samo je u skripti desktop umjesto pl_PL trebalo upisati hr_HR i spremiti to.

slika
Pregledavajući ove dvije datoteke koje si poslao u prvom postu, vidio sam ovaj dio pl_PL i odmah posumnjao na to, ali nisam bio siguran da će to riješiti problem iz dva razloga; prvi je što nikad nisam koristio conky, a drugi je što nisam znao da Poljaci koriste sintaksu datuma i sata kao ameri. :pogled_dolje
To je i mene zbunilo.
Linux Mint 22.3 "Zena" Cinnamon / Samsung Galaxy A55 5G

MB: ASRock B550M Pro4 / CPU: AMD Ryzen 5 PRO 4650G / GPU int. in CPU Radeon RX Vega 7 Renoir / RAM Memory: Corsair Vengeance LPX 16GB
Odgovori