Finestre e lancette conky

Personalizzazione grafica del sistema: icone, temi, sfondi, suoni, eccetera.
mikla90
Prode Principiante
Messaggi: 74
Iscrizione: mercoledì 23 febbraio 2011, 23:10

Finestre e lancette conky

Messaggio da mikla90 »

Eccoci qua. Allora.. installo conky, configuro tutto come voglio senza grossi problemi.. Giusto un paio :p Nell'immagine allegata sono riassunti entrambi. Vorrei fare in modo che conky sia di fatto parte integrante dello sfondo, non che i file o cartelle o quant'altro vadano sotto di esso (in alto a sinistra): come fare?

Poi vorrei ridurre la lunghezza delle lancette dell'orologio ma non riesco a capire come

clock_rings.lua
Spoiler
Mostra
settings_table = {
{
-- Edit this table to customise your rings.
-- You can create more rings simply by adding more elements to settings_table.
-- "name" is the type of stat to display; you can choose from 'cpu', 'memperc', 'fs_used_perc', 'battery_used_perc'.
name='time',
-- "arg" is the argument to the stat type, e.g. if in Conky you would write ${cpu cpu0}, 'cpu0' would be the argument. If you would not use an argument in the Conky variable, use ''.
arg='%I.%M',
-- "max" is the maximum value of the ring. If the Conky variable outputs a percentage, use 100.
max=12,
-- "bg_colour" is the colour of the base ring.
bg_colour=0xffffff,
-- "bg_alpha" is the alpha value of the base ring.
bg_alpha=0.1,
-- "fg_colour" is the colour of the indicator part of the ring.
fg_colour=0xffffff,
-- "fg_alpha" is the alpha value of the indicator part of the ring.
fg_alpha=0.2,
-- "x" and "y" are the x and y coordinates of the centre of the ring, relative to the top left corner of the Conky window.
x=160, y=155,
-- "radius" is the radius of the ring.
radius=50,
-- "thickness" is the thickness of the ring, centred around the radius.
thickness=5,
-- "start_angle" is the starting angle of the ring, in degrees, clockwise from top. Value can be either positive or negative.
start_angle=0,
-- "end_angle" is the ending angle of the ring, in degrees, clockwise from top. Value can be either positive or negative, but must be larger than start_angle.
end_angle=360
},
{
name='time',
arg='%M.%S',
max=60,
bg_colour=0xffffff,
bg_alpha=0.1,
fg_colour=0xffffff,
fg_alpha=0.4,
x=160, y=155,
radius=56,
thickness=5,
start_angle=0,
end_angle=360
},
{
name='time',
arg='%S',
max=60,
bg_colour=0xffffff,
bg_alpha=0.1,
fg_colour=0xffffff,
fg_alpha=0.6,
x=160, y=155,
radius=62,
thickness=5,
start_angle=0,
end_angle=360
},


{
name='',
arg='',
max=1,
bg_colour=0x000000,
bg_alpha=1,
fg_colour=0x000000,
fg_alpha=1,
x=160, y=155,
radius=403,
thickness=2,
start_angle=86,
end_angle=94
}, --[[
{
name='time',
arg='%m',
max=12,
bg_colour=0xffffff,
bg_alpha=0.1,
fg_colour=0x000000,
fg_alpha=0.8,
x=840, y=170,
radius=76,
thickness=5,
start_angle=212,
end_angle=360
}, ]]

}

-- Use these settings to define the origin and extent of your clock.

clock_r=125

-- "clock_x" and "clock_y" are the coordinates of the centre of the clock, in pixels, from the top left of the Conky window.

clock_x=160
clock_y=155

-- Colour & alpha of the clock hands

clock_colour=0xffffff
clock_alpha=0.5

-- Do you want to show the seconds hand?

show_seconds=true

require 'cairo'

function rgb_to_r_g_b(colour,alpha)
return ((colour / 0x10000) % 0x100) / 255., ((colour / 0x100) % 0x100) / 255., (colour % 0x100) / 255., alpha
end

function draw_ring(cr,t,pt)
local w,h=conky_window.width,conky_window.height

local xc,yc,ring_r,ring_w,sa,ea=pt['x'],pt['y'],pt['radius'],pt['thickness'],pt['start_angle'],pt['end_angle']
local bgc, bga, fgc, fga=pt['bg_colour'], pt['bg_alpha'], pt['fg_colour'], pt['fg_alpha']

local angle_0=sa*(2*math.pi/360)-math.pi/2
local angle_f=ea*(2*math.pi/360)-math.pi/2
local t_arc=t*(angle_f-angle_0)

-- Draw background ring

cairo_arc(cr,xc,yc,ring_r,angle_0,angle_f)
cairo_set_source_rgba(cr,rgb_to_r_g_b(bgc,bga))
cairo_set_line_width(cr,ring_w)
cairo_stroke(cr)

-- Draw indicator ring

cairo_arc(cr,xc,yc,ring_r,angle_0,angle_0+t_arc)
cairo_set_source_rgba(cr,rgb_to_r_g_b(fgc,fga))
cairo_stroke(cr)
end

function draw_clock_hands(cr,xc,yc)
local secs,mins,hours,secs_arc,mins_arc,hours_arc
local xh,yh,xm,ym,xs,ys

secs=os.date("%S")
mins=os.date("%M")
hours=os.date("%I")

secs_arc=(2*math.pi/60)*secs
mins_arc=(2*math.pi/60)*mins+secs_arc/60
hours_arc=(2*math.pi/12)*hours+mins_arc/12

-- Draw hour hand

xh=xc+0.7*clock_r*math.sin(hours_arc)
yh=yc-0.7*clock_r*math.cos(hours_arc)
cairo_move_to(cr,xc,yc)
cairo_line_to(cr,xh,yh)

cairo_set_line_cap(cr,CAIRO_LINE_CAP_SQUARE)
cairo_set_line_width(cr,5)
cairo_set_source_rgba(cr,rgb_to_r_g_b(clock_colour,clock_alpha))
cairo_stroke(cr)


-- Draw minute hand

xm=xc+clock_r*math.sin(mins_arc)
ym=yc-clock_r*math.cos(mins_arc)
cairo_move_to(cr,xc,yc)
cairo_line_to(cr,xm,ym)

cairo_set_line_width(cr,3)
cairo_stroke(cr)

-- Draw seconds hand

if show_seconds then
xs=xc+clock_r*math.sin(secs_arc)
ys=yc-clock_r*math.cos(secs_arc)
cairo_move_to(cr,xc,yc)
cairo_line_to(cr,xs,ys)

cairo_set_line_width(cr,1)
cairo_stroke(cr)
end
end

function conky_clock_rings()
local function setup_rings(cr,pt)
local str=''
local value=0

str=string.format('${%s %s}',pt['name'],pt['arg'])
str=conky_parse(str)

value=tonumber(str)
if value == nil then value = 0 end
pct=value/pt['max']

draw_ring(cr,pct,pt)
end

-- Check that Conky has been running for at least 5s

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 cr=cairo_create(cs)

local updates=conky_parse('${updates}')
update_num=tonumber(updates)

if update_num>5 then
for i in pairs(settings_table) do
setup_rings(cr,settings_table)
end
end

draw_clock_hands(cr,clock_x,clock_y)
end


conkyrc

Spoiler
Mostra
# -- Conky settings -- #
background no
update_interval 1

cpu_avg_samples 2
net_avg_samples 2

override_utf8_locale yes

double_buffer yes
no_buffers yes

text_buffer_size 2048
imlib_cache_size 0

# -- Window specifications -- #

own_window yes
own_window_type desktop
own_window_transparent yes
own_window_hints undecorate,sticky,skip_taskbar,skip_pager,below

border_inner_margin 0
border_outer_margin 0

minimum_size 250 250
maximum_width 1024

alignment tl
gap_x 0
gap_y 79

own_window yes
own_window_type override
own_window_transparent yes
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
# -- Graphics settings -- #
draw_shades no
draw_outline no
draw_borders no
draw_graph_borders no

# -- Text settings -- #
use_xft yes
xftfont Santana:size=18
xftalpha 0.8

uppercase no

default_color FFFFFF

# -- Lua Load -- #
lua_load ~/.conky/clock_rings.lua
lua_draw_hook_pre clock_rings

TEXT

${voffset 110}${goto 121}${font Santana:size=20}${time %H:%M}${voffset
${voffset 7}${goto 287}${time %A, %d %B %Y}


:muro: :muro: :muro:
Allegati
ecco
ecco
mikla90
Prode Principiante
Messaggi: 74
Iscrizione: mercoledì 23 febbraio 2011, 23:10

Re: Finestre e lancette conky

Messaggio da mikla90 »

Nessuno??
Avatar utente
nuzzopippo
Entusiasta Emergente
Entusiasta Emergente
Messaggi: 1623
Iscrizione: giovedì 12 ottobre 2006, 11:34

Re: Finestre e lancette conky

Messaggio da nuzzopippo »

Ti rispondo perché incuriosito da conky, che non conosco ma mi incuriosisce, in questo post vedo una discussione che sembra mirata ad uno dei tui problemi, integrazione di conky nel desktop, se cerchi nel forum vi sono altre interessantissime discussioni tra cui alcune molto estese.

A giudicare da quanto contenuto in queste specifiche, mi par di capire che per integrare conky nel desktop debba porsi

Codice: Seleziona tutto

backgroung yes
nel tuo file di configurazione (.conkyrc ?)
Fatti non foste a viver come bruti ...
Avatar utente
Aaika
Prode Principiante
Messaggi: 73
Iscrizione: lunedì 29 dicembre 2008, 3:29
Desktop: Gnome Fallback Compiz
Distribuzione: Ubuntu 14.04 (x86)
Località: Palermo

Re: Finestre e lancette conky

Messaggio da Aaika »

nuzzopippo credo lui intenda altro. Impostare background yes non fa altro che dare un colore di sfondo a conky. Per quel che concerne mikla90, mi dispiace ma non ti so rispondere. Sono un paio di giorni che lavoro proprio sul Conky Ring, ma per fare altro. Se riesco a capire te lo comunico subito.
In ogni caso puoi fare un backup del tuo conky, lavorare sul file .lua (le impostazioni dell'orologio sono li) e vedere se magari riesci.
mikla90
Prode Principiante
Messaggi: 74
Iscrizione: mercoledì 23 febbraio 2011, 23:10

Re: Finestre e lancette conky

Messaggio da mikla90 »

Ciao, é quello che sto facendo.. sono riuscito a far fare all'orologio praticamente tutto, tranne ciò che voglio :-(
Avatar utente
Aaika
Prode Principiante
Messaggi: 73
Iscrizione: lunedì 29 dicembre 2008, 3:29
Desktop: Gnome Fallback Compiz
Distribuzione: Ubuntu 14.04 (x86)
Località: Palermo

Re: Finestre e lancette conky

Messaggio da Aaika »

Trovato!! Devi modificare questa parte

Codice: Seleziona tutto

-- Use these settings to define the origin and extent of your clock.

clock_r=125
tu hai 125, ma nel mio originale è 65, prova e vedi :D
mikla90
Prode Principiante
Messaggi: 74
Iscrizione: mercoledì 23 febbraio 2011, 23:10

Re: Finestre e lancette conky

Messaggio da mikla90 »

Appena arrivo casa vedo, grazie. Scusate la brevità ma sono col telefono.
Avatar utente
nuzzopippo
Entusiasta Emergente
Entusiasta Emergente
Messaggi: 1623
Iscrizione: giovedì 12 ottobre 2006, 11:34

Re: Finestre e lancette conky

Messaggio da nuzzopippo »

Aaika ha scritto:nuzzopippo credo lui intenda altro. Impostare background yes non fa altro che dare un colore di sfondo a conky. ...
Grazie della info e perdonate l'indicazione a sproposito
Fatti non foste a viver come bruti ...
Scrivi risposta

Ritorna a “Personalizzazione dell'ambiente desktop”

Chi c’è in linea

Visualizzano questa sezione: 0 utenti iscritti e 19 ospiti