#2051 Le 01/10/2008, à 10:07
#2052 Le 01/10/2008, à 11:56
- brizou
Re : Conky : Postez vos conkyrc ou certaines parties intéressantes
Salut, j'aimerais savoir s'il est possible d'afficher les infos de transmission dans mon conky?
Merci d'avance pour vos réponses.
tiens ça m'interesserait aussi ça
Hors ligne
#2053 Le 01/10/2008, à 12:00
- Alv
Re : Conky : Postez vos conkyrc ou certaines parties intéressantes
Ah et j'ai aussi un gros problème :
Mon conky n'affiche pas la totalité des infos que je lui demande. A un moment le texte s'arrête. C'est comme s'il n'arrivait pas à gérer trop de texte en même temps. =/
Un petit screenshot pour vous expliquer :
La liste des contacts kopete est coupée en plein milieu (même le pseudo du dernier contact affiché est tronqué)
Et voici le conkyrc en question:
background yes
#avoid flicker
double_buffer yes
#own window to run simultanious 2 or more conkys
own_window yes
own_window_type override
own_window_transparent yes
own_window_hints undecorated,above,sticky,skip_taskbar,skip_pager
#font
use_xft yes
xftfont DejaVu Sans Mono:size=8
xftalpha 0.8
#borders
draw_borders no
border_margin 0
border_width 3
draw_outline no
default_outline_color 777777
#shades
draw_shades no
#position
gap_x 5
gap_y 50
alignment top_right
#behaviour
update_interval 1
out_to_console no
#colour
default_color white
#default_shade_color 359748
own_window_colour 616161
#to prevent window from moving
use_spacer no
minimum_size 230 500
maximum_width 230
draw_graph_borders no
TEXT
${font zekton:size=12}Contacts :${font arial:size=5}
${color black}${hr 2}
$color${font sans:size=9}${if_running kopete}${execi 1 dcop kopete KopeteIface contactsStatus | grep -v "Non connect"}${else}Déconnecté$endif
Dernière modification par Alv (Le 01/10/2008, à 12:01)
Hors ligne
#2054 Le 01/10/2008, à 14:19
- n3o51
Re : Conky : Postez vos conkyrc ou certaines parties intéressantes
Bonjour j'essaie de faire un lanceur on/off avec mon conky mais il ne marche pas quelqu'un as une idéé
#!/bin/bash
DIR=/home/n3o/script
function cconky {
sleep 7
killall conky
env DISPLAY=:0.0 conky -c .conkyrc&
env DISPLAY=:0.0 conky -c .conkyrc2&
env DISPLAY=:0.0 conky -c .conkyrc3&
env DISPLAY=:0.1 conky -c .conkyrc5&
}
if pgrep conky; then
pkill conky && exit
else
cconky
fi
exit
Merci
Welcome to the real world
________________________________
Hors ligne
#2055 Le 01/10/2008, à 15:31
- chepioq
Re : Conky : Postez vos conkyrc ou certaines parties intéressantes
@Alv
As tu un message d'erreur quand tu lances ton conky en console?
Sinon essaye en commentant ces deux lignes:
#minimum_size 230 500
#maximum_width 230
#2056 Le 01/10/2008, à 15:47
- toufalk
Re : Conky : Postez vos conkyrc ou certaines parties intéressantes
Bonjour,
J'essaie de n'afficher les informations concernant eth0 que si celle-ci possède une IP.
J'ai donc fait ceci dans mon .conkyrc
Réseau : ${execi 10 ~/.conky/test-interfaces}
${if_existing ~/.conky/eth}eth0 : ${addr eth0}${else}Pas d'IP sur eth0${endif}
et mon script ~/.conky/test-interfaces
#! /bin/bash
fileeth="~/.conky/eth"
if ifconfig eth0 | grep -q Bcast
then
touch ${fileeth}
else
rm -f ${fileeth}
fi
Mon script fonctionne. Il me crée bien un fichier vide au bon endroit quand j'ai une IP sur eth0 et l'efface sinon.
Le script est bien exécuté par conky, par contre, conky ne semble pas détecter le fichier ~/.conky/eth... Des idées ??
(Promis, quand ça marche, je poste le screenshot et le script et le .conkyrc complet)
Hors ligne
#2057 Le 01/10/2008, à 17:31
- Alv
Re : Conky : Postez vos conkyrc ou certaines parties intéressantes
J'ai commenté les deux lignes et ça ne change rien, il y a comme une limite de caractères que conky peut afficher.
Voici ce que ça donne en lançant sur la console
alvaro@alvaro-laptop:~$ conky -c ~/.conky/conkyrc-kopete &
[1] 7871
alvaro@alvaro-laptop:~$ Conky: use_spacer should have an argument of left, right, or none. 'no' seems to be some form of 'false', so defaulting to none.
Conky: forked to background, pid is 7872
Conky: desktop window (59) is root window
Conky: window type - override
Conky: drawing to created window (1400001)
Conky: drawing to double buffer
Hors ligne
#2058 Le 01/10/2008, à 17:36
- olive33
Re : Conky : Postez vos conkyrc ou certaines parties intéressantes
@ toufalk
renomme ton script en .sh
ça devrait beaucoup mieux marcher!
Ubuntu 14.04 LTS... -Intel i5 -nvidia gt520 ...joli boitier de salon bien silencieux :D
Lubuntu pour la musique dans un boitier encore plus joli et encore plus silencieux !!
Hors ligne
#2059 Le 01/10/2008, à 18:15
- toufalk
Re : Conky : Postez vos conkyrc ou certaines parties intéressantes
Bon en fait ça marche... il suffisait de mettre le chemin complet du fichier dans le conkyrc... C'est d'ailleurs étonnant car on peux spécifier un chemin relatif pour les scripts...:rolleyes:
Donc, comme promis, voici mon screenshot :
Et voici mon conkyrc:
# set to yes if you want Conky to be forked in the background
background yes
cpu_avg_samples 2
net_avg_samples 2
short_units yes
out_to_console no
# Use Xft?
use_xft yes
# Xft font when Xft is enabled
xftfont monospace-8
# Text alpha when using Xft
xftalpha 0.8
# Update interval in seconds
update_interval 1
# Create own window instead of using desktop (required in nautilus)
own_window_transparent yes
own_window_colour black
own_window yes
own_window_type override
# Use double buffering (reduces flicker, may not work for everyone)
double_buffer yes
# Minimum size of text area
minimum_size 200 5
maximum_width 250
# Draw shades?
draw_shades no
# Draw outlines?
draw_outline no
# Draw borders around text
draw_borders no
# Stippled borders?
stippled_borders 0
# border margins
border_margin 5
# border width
border_width 0
# drawn 1 pixel border around graphs or not
draw_graph_borders no
# Default colors and also border colors
default_color white
default_shade_color white
default_outline_color white
# Text alignment, other possible values are commented
alignment top_right
# Gap between borders of screen and text
gap_x 10
gap_y 30
# Add spaces to keep things from moving about? This only affects certain objects.
#use_spacer right
# Subtract file system buffers from used memory?
no_buffers no
# set to yes if you want all text to be in uppercase
uppercase no
####################################
####################################
####################################
####################################
TEXT
${font Verdana:size=11}$alignc${color #DBAA82}${Time %A %d %B %Y}
$alignc${color #FFFB00}${time %H:%M:%S}${font Sans:size=8.5}
${color #565868}${stippled_hr}
${color #FF000C}Moniteur Systeme : $alignc${color #FFFB00}${nodename}
${color #DBAA82}$sysname : ${color #565868}$kernel ${color #DBAA82}on ${color #565868}$machine
${color #DBAA82}Uptime : ${color #B6A291}$uptime | ${color #DBAA82}Temp : ${color #B6A291}${acpitemp}°C
${color #DBAA82}Adaptateur : ${color #FFFB00}${acpiacadapter}
${color #DBAA82}Autonomie batterie : ${color #FFFB00}${battery_percent}%
${color #FFFB00}${battery_bar}
${color #DBAA82}Charge cpu : cpu 1: ${color #FFFB00}${cpu cpu1}% ${color #DBAA82}cpu 2: ${color #FFFB00}${cpu cpu2}%
${color #FFFFFF}${cpugraph DBAA82 344299}
${color #DBAA82}ram : ${color #3652FF}$mem ${color #DBAA82}/ $memmax - ${color #FFFB00}$memperc%
${color #344299}$membar
${color #DBAA82}swap : ${color #3652FF}$swap ${color #DBAA82}/ $swapmax - ${color #FFFB00}$swapperc%
${color #344299}$swapbar
${color #DBAA82}Processus ${alignr}PID %cpu
${color #FFFB00}${top name 1}${alignr}${top pid 1} ${top cpu 1}
${color #565868}${top name 2}${alignr}${top pid 2} ${top cpu 2}
${color #565868}${top name 3}${alignr}${top pid 3} ${top cpu 3}
${color #565868}${top name 4}${alignr}${top pid 4} ${top cpu 4}
${color #565868}${top name 5}${alignr}${top pid 5} ${top cpu 5}
${color #565868}${stippled_hr}
${color #FF000C}Disques :
${color #DBAA82}racine : ${color #3652FF}${fs_used /} ${color #DBAA82}/ ${fs_size /} (${color #FFFB00}${fs_free_perc /}% ${color #DBAA82}libre)
${color #344299}${fs_bar /}
${color #DBAA82}home : ${color #3652FF}${fs_used /home} ${color #DBAA82}/ ${fs_size /home} (${color #FFFB00}${fs_free_perc /home}% ${color #DBAA82}libre)
${color #344299}${fs_bar /home}
${if_mounted /media/CleUsb/MaCle}${color #DBAA82}clé(fat) : ${color #3652FF}${fs_used /media/CleUsb/MaCle} ${color #DBAA82}/ ${fs_size /media/CleUsb/MaCle} (${color #FFFB00}${fs_free_perc /media/CleUsb/MaCle}% ${color #DBAA82}libre)
${color #344299}${fs_bar /media/CleUsb/MaCle}${endif}
${if_mounted /media/CleUsb/Linux-Only}${color #DBAA82}clé(ext) : ${color #3652FF}${fs_used /media/CleUsb/Linux-Only} ${color #DBAA82}/ ${fs_size /media/CleUsb/Linux-Only} (${color #FFFB00}${fs_free_perc /media/CleUsb/Linux-Only}% ${color #DBAA82}libre)
${color #344299}${fs_bar /media/CleUsb/Linux-Only}${else}${color #DBAA82}${alignc}clé non montée${endif}
${if_mounted /media/WD/WD-fat}${color #DBAA82}WD(fat) : ${color #3652FF}${fs_used /media/WD/WD-fat} ${color #DBAA82}/ ${fs_size /media/WD/WD-fat} (${color #FFFB00}${fs_free_perc /media/WD/WD-fat}% ${color #DBAA82}libre)
${color #344299}${fs_bar /media/WD/WD-fat}${endif}
${if_mounted /media/WD/WD-ext}${color #DBAA82}WD(ext) : ${color #3652FF}${fs_used /media/WD/WD-ext} ${color #DBAA82}/ ${fs_size /media/WD/WD-ext} (${color #FFFB00}${fs_free_perc /media/WD/WD-ext}% ${color #DBAA82}libre)
${color #344299}${fs_bar /media/WD/WD-ext}${else}${color #DBAA82}${alignc}WD non monté${endif}
${color #565868}${stippled_hr}
${color #FF000C}Réseau : ${execi 60 ~/.conky/test-interfaces.sh}
${if_existing /home/vincent/.conky/eth}${color #DBAA82}eth0 : ${addr eth0}${alignr}(${execi 60 wget -O - http://ip.tupeux.com | tail})
${color #DBAA82}down: ${color #FFFB00}${downspeedf eth0} k/s ${color #DBAA82}up: ${color #FFFB00}${upspeedf eth0} k/s
${color #FFFFFF}${downspeedgraph eth0 25,100 DBAA82 344299} ${color #FFFFFF}${upspeedgraph eth0 25,100 344299 DBAA82}${else}${color #DBAA82}eth0 : pas d'IP${endif}
${if_existing /home/vincent/.conky/wlan}${color #DBAA82}wlan0 : ${addr wlan0}${alignr}(${execi 60 wget -O - http://ip.tupeux.com | tail})
${color #DBAA82}ESSID : ${color #FFFB00}${wireless_essid wlan0}$alignr${color #DBAA82}qualité : ${color #FFFB00}${wireless_link_qual_perc wlan0}%
${color #DBAA82}down: ${color #FFFB00}${downspeedf wlan0} k/s ${color #DBAA82}up: ${color #FFFB00}${upspeedf wlan0} k/s
${color #FFFFFF}${downspeedgraph wlan0 25,100 DBAA82 344299} ${color #FFFFFF}${upspeedgraph wlan0 25,100 344299 DBAA82}${else}${color #DBAA82}${alignc}Pas d'IP sur wlan0${endif}
${color #565868}${stippled_hr}
Et enfin mon script test-interfaces.sh pour le réseau :
#! /bin/bash
#
# cree un fichier vide si l'interface possede une IP sinon efface le fichier
#
fileeth="$HOME/.conky/eth"
filewlan="$HOME/.conky/wlan"
if ifconfig eth0 | grep -q Bcast
then
touch ${fileeth}
else
rm -f ${fileeth}
fi
if ifconfig wlan0 | grep -q Bcast
then
touch ${filewlan}
else
rm -f ${filewlan}
fi
Voilà. Pas grand chose de nouveau par rapport aux précédents conkyrc (normal, j'ai lâchement pompé...) si ce n'est l'affichage de l'état de ma clé usb et de mon DD externe quand ils sont montés (et seulement quand ils sont montés ) et l'affichage des stats des interfaces réseaux seulement quand elles ont une IP.
Hors ligne
#2060 Le 01/10/2008, à 19:02
- chepioq
Re : Conky : Postez vos conkyrc ou certaines parties intéressantes
@Alv
A tout hasard remplace ta ligne
$color${font sans:size=9}${if_running kopete}${execi 1 dcop kopete KopeteIface contactsStatus | grep -v "Non connect"}${else}Déconnecté$endif
par
$color${font sans:size=9}${if_running kopete}${execi 1 dcop kopete KopeteIface contactsStatus | grep -v "Non connect"}${else}Déconnecté${endif}
Il me semble que tu as oublié les accolades sur le dernier endif
#2061 Le 01/10/2008, à 20:58
- Darkn3xx
Re : Conky : Postez vos conkyrc ou certaines parties intéressantes
Mise à jour de mon bureau avec Conky
conkyrc (droite)
background no
update_interval 1.0
double_buffer yes
use_xft yes
override_utf8_locale
xftfont Sans:size=8
xftalpha 0.8
own_window yes
own_window_transparent yes
own_window_type override
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
#on_bottom yes
minimum_size 280 5
maximum_width 247
draw_shades no
draw_outline no
draw_borders no
draw_graph_borders yes
stippled_borders 0
border_margin 3
border_width 0
default_color white
default_shade_color black
default_outline_color black
color1 5B8DCF
color2 8BAEE8
color3 FC8820
alignment top_right
gap_x 6
gap_y 40
no_buffers yes
TEXT
${font Sans:style=Bold:pixelsize=10}${color1}Utilisateur :$color ${exec whoami}
${color1}Kernel : $color$kernel
${color1}Uptime : $color$uptime ${alignr}${color1}Load : $color$loadavg
$stippled_hr
${color1}CPU : $color${freq}MHz / $cpu% ${color2}${cpubar}
$color${cpugraph FFFFFF 81A1D3}
${color1}Mémoire RAM : $color$mem / $memmax
$memperc % ${color2}${membar}
${color1}Utilisation du Swap : $color$swap / $swapmax
$swapperc % ${color2}${swapbar}
${color1}Batterie : $color${battery_percent BAT1} % ${color2}${battery_bar BAT1}
${color1}Processus : $color$processes ${color1}En cours : $color$running_processes
$stippled_hr
${color1}Disque dur : $color${exec hddtemp -n /dev/sda}°C ${alignr}${color1}Activité : $color${diskio /dev/sda}/s
${color1}Système : $color${fs_used /} / ${fs_size /}
$color${fs_used_perc /}% ${color2}${fs_bar /}
${color1}Home : $color${fs_used /home} / ${fs_size /home}
$color${fs_used_perc /home}% ${color2}${fs_bar /home}
${color1}Stockage : $color${fs_used /media/Stockage} / ${fs_size /media/Stockage}
$color${fs_used_perc /media/Stockage}% ${color2}${fs_bar /media/Stockage}
${color1}Windows : $color${fs_used /media/Windows} / ${fs_size /media/Windows}
$color${fs_used_perc /media/Windows}% ${color2}${fs_bar /media/Windows}
${color1}IP Distante : $color${execi 60 wget -O - http://ip.tupeux.com | tail}
$stippled_hr
${color1}Ethernet : $color${addr eth0}
${color1}Download : $color${downspeed eth0} kiB/s ${alignr}${color1}Upload : $color${upspeed eth0} kiB/s
${color1}Total : $color${totaldown eth0} ${alignr}${color1}Total : $color${totalup eth0}
$stippled_hr
${color1}Wi-Fi : $color${wireless_bitrate eth1} ${alignr}${color1}IP Locale : $color${addr eth1}
${color1}Signal : $color${wireless_link_qual eth1} % ${color2}${wireless_link_bar eth1}
${color1}SSID : $color${wireless_essid eth1} ${alignr}${color1}MAC : $color${wireless_ap eth1}
${color1}Download : $color${downspeed eth1} kiB/s ${alignr}${color1}Upload : $color${upspeed eth1} kiB/s
${color1}Total : $color${totaldown eth1} ${alignr}${color1}Total : $color${totalup eth1}
$stippled_hr
${color1}${alignc}Port(s) ouvert(s) : ${color #B5141B}${tcp_portmon 1 65535 count}$color
${tcp_portmon 1 65535 rhost 0} $alignr${tcp_portmon 1 65535 lservice 0}
${tcp_portmon 1 65535 rhost 1} $alignr${tcp_portmon 1 65535 lservice 1}
${tcp_portmon 1 65535 rhost 2} $alignr${tcp_portmon 1 65535 lservice 2}
${tcp_portmon 1 65535 rhost 3} $alignr${tcp_portmon 1 65535 lservice 3}
${tcp_portmon 1 65535 rhost 4} $alignr${tcp_portmon 1 65535 lservice 4}
${tcp_portmon 1 65535 rhost 5} $alignr${tcp_portmon 1 65535 lservice 5}
$stippled_hr
${color1}Processeur$alignr${color}${color #B5141B}(%) PID CPU${color}
${color #FFFFFF}${top name 1} $alignr${top pid 1} ${top cpu 1}
${color #CACACA}${top name 2} $alignr${top pid 2} ${top cpu 2}
${color #A2A2A2}${top name 3} $alignr${top pid 3} ${top cpu 3}
${color #787878}${top name 4} $alignr${top pid 4} ${top cpu 4}
${color1}Mémoire$alignr${color}${color #B5141B}(%) PID MEM${color}
${color #FFFFFF}${top_mem name 1} $alignr${top_mem pid 1} ${top_mem mem 1}
${color #CACACA}${top_mem name 2} $alignr${top_mem pid 2} ${top_mem mem 2}
${color #A2A2A2}${top_mem name 3} $alignr${top_mem pid 3} ${top_mem mem 3}
${color #787878}${top_mem name 4} $alignr${top_mem pid 4} ${top_mem mem 4}$color
conkyrc2 (Rhythmbox)
background no
use_xft yes
xftfont Terminus:size=9
xftalpha 0.8
update_interval 1.0
double_buffer yes
minimum_size 300 5
maximum_width 250
draw_shades yes
draw_outline no
draw_borders no
draw_graph_borders yes
stippled_borders 0
border_margin 0
border_width 0
default_color white
default_shade_color black
default_outline_color white
own_window yes
own_window_transparent yes
own_window_type override
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
alignment bottom_middle
gap_x -50
gap_y 33
no_buffers yes
uppercase no
override_utf8_locale no
use_spacer right
# colours
color1 white
# light blue
color2 6892C6
# orange
color3 E77320
# green
color4 78BF39
# red
color5 CC0000
TEXT
${color4}${font StyleBats:style=Bold:size=14}j ${font Terminus:style=Bold:size=11}Rhythmbox${font}
${font Sans:style=Bold:pixelsize=10}
${color4}Titre : $color${execi 5 rhythmbox-client --no-start --print-playing-format "%tt"}
${color4}Artiste : $color${execi 5 rhythmbox-client --no-start --print-playing-format "%aa"}
${color4}Album : $color${execi 5 rhythmbox-client --no-start --print-playing-format "%at"}
${color4}Position : $color${execi 5 rhythmbox-client --no-start --print-playing-format "%te / %td"}
conkyrc3 (Météo) Pour plus de détails pour la météo voir plus bas !
background no
use_xft yes
xftfont Sans:size=9
xftalpha 0.8
update_interval 1.0
double_buffer yes
minimum_size 300 0
maximum_width 280
draw_shades yes
draw_outline no
draw_borders no
draw_graph_borders yes
stippled_borders 8
border_margin 4
border_width 1
default_color white
default_shade_color black
default_outline_color white
own_window yes
own_window_transparent yes
own_window_type override
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
alignment bottom_left
gap_x 10
gap_y -147
no_buffers yes
uppercase no
override_utf8_locale yes
use_spacer right
color1 white
# light blue
color2 6892C6
# orange
#E77320
color3 FC8820
# green
color4 78BF39
# red
color5 CC0000
color6 8BAEE8
text_buffer_size 1024
TEXT
${offset -5}${color3}${font StyleBats:style=CleanCut:size=14}q ${font Terminus:style=Bold:size=11}Météo ${offset 5}${color3}${font StyleBats:style=CleanCut:size=14}q${color3}
${voffset 5}${goto 10}${font ConkyWeather:size=35}${execi 1800 conkyForecast --location=FRXX0115 --datatype=WF}${font}
${color1}${voffset 5}${goto 16}${font Sans:style=Bold:pixelsize=10}${execi 1800 conkyForecast --location=FRXX0115 --datatype=LT --hideunits}/ ${execi 1800 conkyForecast --location=FRXX0115 --datatype=HT --hideunits}${font}
${color3}${voffset 10}${goto 10}${font ConkyWindNESW:size=35}${execi 1800 conkyForecast --location=FRXX0115 --datatype=BS}${font}
${color1}${voffset 5}${goto 10}${font Sans:style=Bold:pixelsize=10}${execi 1800 conkyForecast --location=FRXX0115 --datatype=WS} - ${execi 1800 conkyForecast --location=FRXX0115 --datatype=WD -L fr}${font}
${color1}${voffset -130}${font Sans:style=Bold:pixelsize=10}${execi 1800 conkyForecast --location=FRXX0115 --template=/home/darkn3xx/.conky/conkyForecast.template}${font}${color3}
${voffset -75}${goto 10}${font ConkyWeather:size=32}${execi 1800 conkyForecast --location=FRXX0115 --datatype=WF --startday=1 --endday=4 --spaces=3}${font}
${voffset 25}${color3}${font Sans:size=7}${alignr 20}Dernière mise à jour : ${execi 1800 conkyForecast --location=FRXX0115 --datatype=LU}${font}
Script pour lancer Conky (conky.sh)
#!/bin/bash
killall conky
sleep 20;
conky -c /home/darkn3xx/.conkyrc &
conky -c /home/darkn3xx/.conkyrc2 &
conky -c /home/darkn3xx/.conkyrc3 &
Pour avoir la météo avec conkyForecast !
On édite le sources.list
sudo gedit /etc/apt/sources.list
On ajoute ce dépôt
deb http://ppa.launchpad.net/m-buck/ubuntu hardy main
Mise à jour des dépôts et installation de conkyForecast
sudo apt-get update && sudo apt-get install conkyforecast
Aide sur le fonctionnement de conkyForecast
conkyForecast -h
Mon conkyForecast.template
Station : [--datatype=CN]
Conditions : [--datatype=CC]
Precipitations : [--datatype=PC --startday=0]
Indice UV : [--datatype=UI] - [--datatype=UT]
Humidite : [--datatype=HM]
Rosee : [--datatype=DP]
Soleil : [--datatype=SR] / [--datatype=SS]
Pression : [--datatype=BR] - [--datatype=BD]
Lune : [--datatype=MP]
[--datatype=DW --startday=1 --shortweekday] [--datatype=DW --startday=2 --shortweekday] [--datatype=DW --startday=3 --shortweekday] [--datatype=DW --startday=4 --shortweekday]
[--datatype=LT --startday=1 --hideunits --centeredwidth=3]/[--datatype=HT --startday=1 --hideunits --centeredwidth=3] [--datatype=LT --startday=2 --hideunits --centeredwidth=3]/[--datatype=HT --startday=2 --hideunits --centeredwidth=3] [--datatype=LT --startday=3 --hideunits --centeredwidth=3]/[--datatype=HT --startday=3 --hideunits --centeredwidth=3] [--datatype=LT --startday=4 --hideunits --centeredwidth=3]/[--datatype=HT --startday=4 --hideunits --centeredwidth=3]
Mon .conkyForecast.config (doit se trouver dans le Home ~/)
# config settings for conkyForecast.py
CACHE_FOLDERPATH = /tmp/
CONNECTION_TIMEOUT = 5
EXPIRY_MINUTES = 30
TIME_FORMAT = %H:%M
DATE_FORMAT = %d-%m-%Y
LOCALE = fr
XOAP_PARTNER_ID = XXXXXXXXXX
XOAP_LICENCE_KEY = XXXXXXXXXX
On obtient le XOAP_PARTNER_ID et le XOAP_LICENCE_KEY par mail en s'inscrivant ici : http://www.weather.com/services/xmloap.html
Pour plus d'informations sur conkyForecast voilà le post officiel (en anglais) :
http://ubuntuforums.org/showthread.php?t=869328
Dernière modification par Darkn3xx (Le 04/10/2008, à 15:24)
Centrino 1.4Ghz, 512Mo RAM, ATI Radeon 9200 Mobility - Ubuntu 8.10
Hors ligne
#2062 Le 01/10/2008, à 21:00
- Alv
Re : Conky : Postez vos conkyrc ou certaines parties intéressantes
@ chepioq : En effet, mais je ne pense pas que ça change quelquechose. En tous cas le problème est encore présent.
J'ai d'ailleurs remarqué, en essayant un peu de tout, que ça me le fait avec n'importe quel conky. Si je lui demande d'afficher un "trop grand nombre" d'infos, ça n'affiche pas la totalité. Comme s'il y avait un quota de caractères à afficher.
Dernière modification par Alv (Le 01/10/2008, à 21:00)
Hors ligne
#2063 Le 01/10/2008, à 21:21
- Darkn3xx
Re : Conky : Postez vos conkyrc ou certaines parties intéressantes
@ Alv : Essaie de rajouter dans ton conkyrc
text_buffer_size 1024
J'ai lu que quand il y a beaucoup de caractères et d'images à afficher, il faut augmenter la taille du buffer.
Dernière modification par Darkn3xx (Le 01/10/2008, à 21:22)
Centrino 1.4Ghz, 512Mo RAM, ATI Radeon 9200 Mobility - Ubuntu 8.10
Hors ligne
#2064 Le 01/10/2008, à 21:37
- Alv
Re : Conky : Postez vos conkyrc ou certaines parties intéressantes
Merci beaucoup c'était exactement ça.
Hors ligne
#2065 Le 02/10/2008, à 17:25
#2066 Le 02/10/2008, à 18:38
- chepioq
Re : Conky : Postez vos conkyrc ou certaines parties intéressantes
Voici mes conky
Le conky à gauche
background no
font 6x10
use_xft yes
xftfont MgOpen Modata L:size=7:bold
#xftalpha 0.8
update_interval 3.0
total_run_times 0
own_window yes
own_window_type normal
own_window_transparent yes
#own_window_colour SteelBlue4
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
double_buffer yes
#minimum_size 280 5
draw_shades no
draw_outline no
draw_borders no
draw_graph_borders yes
stippled_borders 8
border_margin 4
border_width 1
default_color white
default_shade_color black
default_outline_color black
alignment top_right
gap_x 12
gap_y 250
no_buffers no
uppercase no
cpu_avg_samples 2
net_avg_samples 2
override_utf8_locale yes
use_spacer right
TEXT
${color #000080}$stippled_hr
$alignc ${color #cd5555}$sysname $kernel on $machine
${color #000080}$stippled_hr
${color #cd5555}Système de fichiers ouvert depuis: ${color #11B3F8}$uptime
${color #cd5555}Fréquence CPU: ${color #11B3F8}$freq
${color #0000ff}${cpugraph cpu1 32,181 0000ff ff4500} ${color #0000ff}${cpugraph cpu2 32,181 0000ff ff4500}
${color #cd5555}Utilisation Core 1: ${color #11B3F8}${cpu cpu1}% ${color #cd5555}Utilisation Core 2: ${color #11B3F8}${cpu cpu2}%
${color #cd5555}Température Core 1: ${color #11B3F8}${exec sensors | grep -A 2 '^coretemp-isa-0000' | cut -c15-20 | grep °} ${color #cd5555}Température Core 2: ${color #11B3F8}${exec sensors | grep -A 2 '^coretemp-isa-0001' | cut -c15-20 | grep °}
${color #000080}$stippled_hr
${color #cd5555}Utilisation RAM ${color #0000ff}$alignc Totale Utilisée Pourcentage
$alignc ${color #11B3F8}$memmax $mem $memperc%
${color #0000ff}${memgraph 0000ff ff4500}
${color #cd5555}Utilisation Swap : ${color #11B3F8} $swap/$swapmax - $swapperc% ${color #00f5ff} ${swapbar}
${color #000080}$stippled_hr
${color #cd5555}Internet:
${color #0000ff}Reception:${color #ff4500} ${downspeedf eth0} k/s ${color #11B3F8} Envoi: ${color #ff4500}${upspeedf eth0} k/s
${color #0000ff}Total: ${color #ff4500} ${totaldown eth0} ${color #11B3F8}Total:${color #ff4500} ${totalup eth0}
${color #0000ff}${downspeedgraph eth0 32,181 0000ff ff4500} ${color #22ccff}${upspeedgraph eth0 32,181 0000ff ff4500}
${color #000080}$stippled_hr
${color #cd5555}Systèmes de fichiers:
${color #cd5555}Fedora9 ${color #11B3F8} ${fs_used /} / ${fs_size /}: ${color #00f5ff}${fs_bar /}
${color #cd5555}Home ${color #11B3F8} ${fs_used /home} / ${fs_size /home} : ${color #00f5ff}${fs_bar /home}
${color #000080}$stippled_hr
${color #cd5555}Processus : ${color #11B3F8}$processes ${color #11B3F8}En cours: ${color #ff4500}$running_processes
${color #0000ff}En cours: $alignc PID CPU% MEM%
${color #ff4500} ${top name 1} $alignc ${top pid 1} ${top cpu 1} ${top mem 1}
${color #11B3F8} ${top name 2} $alignc ${top pid 2} ${top cpu 2} ${top mem 2}
${color #11B3F8} ${top name 3} $alignc ${top pid 3} ${top cpu 3} ${top mem 3}
${color #11B3F8} ${top name 4} $alignc ${top pid 4} ${top cpu 4} ${top mem 4}
${color #0000ff}En mémoire:
${color #ff4500} ${top_mem name 1} $alignc ${top_mem pid 1} ${top_mem cpu 1} ${top_mem mem 1}
${color #11B3F8} ${top_mem name 2} $alignc ${top_mem pid 2} ${top_mem cpu 2} ${top_mem mem 2}
${color #11B3F8} ${top_mem name 3} $alignc ${top_mem pid 3} ${top_mem cpu 3} ${top_mem mem 3}
Le conky calendrier
background no
font 6x10
use_xft yes
xftfont MgOpen Modata L:size=7:bold
#xftalpha 0.8
update_interval 3.0
total_run_times 0
own_window yes
own_window_type normal
own_window_transparent yes
#own_window_colour SteelBlue4
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
double_buffer yes
draw_shades no
draw_outline no
draw_borders no
draw_graph_borders yes
stippled_borders 8
border_margin 4
border_width 1
default_color white
default_shade_color black
default_outline_color black
alignment top_right
gap_x 99
gap_y 130
no_buffers no
uppercase no
cpu_avg_samples 2
net_avg_samples 2
override_utf8_locale yes
use_spacer right
TEXT
${color #11B3F8}${font Bitstream Vera Sans Mono:size=10}${execpi 60 DJS=`date +%_d`; cal | sed '/./!d' | sed 's/$/ /' | fold -w 21 | sed -n '/^.\{21\}/p' | sed 's/^/${alignc} /' | sed /" $DJS "/s/" $DJS "/" "'${color tan2}'"$DJS"'${color #11B3F8}'" "/}
Le conky météo
background no
use_xft yes
xftfont Sans:size=9
xftalpha 0.8
update_interval 1.0
double_buffer yes
draw_shades no
draw_outline no
draw_borders no
draw_graph_borders yes
stippled_borders 8
border_margin 4
border_width 1
default_color white
default_shade_color black
default_outline_color white
own_window yes
own_window_transparent yes
own_window_type normal
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
alignment bottom_left
gap_x 10
gap_y -147
no_buffers no
uppercase no
override_utf8_locale yes
use_spacer right
color1 11B3F8
# light blue
color2 6892C6
# orange
#E77320
color3 FC8820
# green
color4 78BF39
# red
color5 CC0000
color6 8BAEE8
text_buffer_size 1024
TEXT
${offset -5}${color3}${font StyleBats:style=CleanCut:size=14}q ${font Terminus:style=Bold:size=11}Météo ${offset 5}${color3}${font StyleBats:style=CleanCut:size=14}q${color3}
${voffset 5}${goto 10}${font ConkyWeather:size=35}${execi 1800 conkyForecast --location=FRXX0006 --datatype=WF}${font}
${color1}${voffset 5}${goto 16}${font Sans:style=Bold:pixelsize=10}${execi 1800 conkyForecast --location=FRXX0006 --datatype=LT --hideunits}/ ${execi 1800 conkyForecast --location=FRXX0006 --datatype=HT --hideunits}${font}
${color3}${voffset 10}${goto 10}${font ConkyWindNESW:size=35}${execi 1800 conkyForecast --location=FRXX0006 --datatype=BS}${font}
${color1}${voffset 5}${goto 10}${font Sans:style=Bold:pixelsize=10}${execi 1800 conkyForecast --location=FRXX0006 --datatype=WS} - ${execi 1800 conkyForecast --location=FRXX0006 --datatype=WD -L fr}${font}
${color1}${voffset -130}${font Sans:style=Bold:pixelsize=10}${execi 1800 conkyForecast --location=FRXX0006 --template=/home/dominique/.conky/conkyForecast.template}${font}${color3}
${voffset -75}${goto 10}${font ConkyWeather:size=32}${execi 1800 conkyForecast --location=FRXX0006 --datatype=WF --startday=1 --endday=4 --spaces=3}${font}
${voffset 25}${color3}${font Sans:size=7}${alignr 20}Dernière mise à jour : ${execi 1800 conkyForecast --location=FRXX0006 --datatype=LU}${font}
Le conkyForecast.template et le .conkyForecast.config sont les mêmes que ceux de Darkn3xx (voir un peu plus haut)
#2067 Le 02/10/2008, à 19:33
- Flegmatik
Re : Conky : Postez vos conkyrc ou certaines parties intéressantes
Je voudrais installer un 2e conky avec la météo comme celui de Darkn3xx mais je n'arrive pas à faire afficher plsuieurs conky, comment faire ?
In love with Ubuntu !
Hors ligne
#2068 Le 02/10/2008, à 20:16
- Darkn3xx
Re : Conky : Postez vos conkyrc ou certaines parties intéressantes
Je voudrais installer un 2e conky avec la météo comme celui de Darkn3xx mais je n'arrive pas à faire afficher plsuieurs conky, comment faire ?
Pour afficher plusieurs Conky il te suffit de taper cela dans un terminal :
conky -c /lechemindetonconky/tonconky
Tu peux répéter cette commande pour afficher autant de conky que tu souhaites
Centrino 1.4Ghz, 512Mo RAM, ATI Radeon 9200 Mobility - Ubuntu 8.10
Hors ligne
#2069 Le 02/10/2008, à 20:22
- Flegmatik
Re : Conky : Postez vos conkyrc ou certaines parties intéressantes
Voici les messages d'erreurs de mes conky 2 et 3 :
darkdog@dark-laptop:~$ conky -c /home/darkdog/.conkyrc2
Conky: desktop window (100003f) is subwindow of root window (1a6)
Conky: window type - override
Conky: drawing to created window (5600001)
Conky: drawing to double buffer
ERROR: Error loading template file: [Errno 2] No such file or directory: '/home/darkn3xx/.conky/conkyForecast.template'
Traceback (most recent call last):
File "/usr/share/conkyforecast/conkyForecast.py", line 1251, in <module>
weather.outputData()
File "/usr/share/conkyforecast/conkyForecast.py", line 1137, in outputData
print output.encode("utf-8")
UnboundLocalError: local variable 'output' referenced before assignment
darkdog@dark-laptop:~$ conky -c /home/darkdog/.conkyrc3
Conky: desktop window (100003f) is subwindow of root window (1a6)
Conky: window type - normal
Conky: drawing to created window (5400001)
Conky: drawing to double buffer
Conky: unknown variable
In love with Ubuntu !
Hors ligne
#2070 Le 02/10/2008, à 20:34
- Darkn3xx
Re : Conky : Postez vos conkyrc ou certaines parties intéressantes
Pour ton .conkyrc2 il faut que tu adaptes cette ligne : /home/darkn3xx/.conky/conkyForecast.template
Regarde ton conkyrc à cette ligne :
${execi 1800 conkyForecast --location=FRXX0115 --template=/home/darkn3xx/.conky/conkyForecast.template}
Il faut que tu adaptes le chemin en fonction de l'endroit où tu as placé le conkyForecast.template !
Centrino 1.4Ghz, 512Mo RAM, ATI Radeon 9200 Mobility - Ubuntu 8.10
Hors ligne
#2071 Le 02/10/2008, à 20:35
- Flegmatik
Re : Conky : Postez vos conkyrc ou certaines parties intéressantes
En plus pour la météo ça ne s'affiche pas correctement...
In love with Ubuntu !
Hors ligne
#2072 Le 02/10/2008, à 20:43
- Darkn3xx
Re : Conky : Postez vos conkyrc ou certaines parties intéressantes
En plus pour la météo ça ne s'affiche pas correctement...
C'est normal. Un conkyrc doit être adapté pour chaque PC, surtout car la résolution de l'écran n'est pas la même chez tout le monde.
Pour jouer avec la position du conky il faut régler ceci :
gap_x #Position horizontale
gap_y #Position verticale
alignment #(top_ bottom_ middle right left etc..) conky en haut, bas ; gauche, droite...
Centrino 1.4Ghz, 512Mo RAM, ATI Radeon 9200 Mobility - Ubuntu 8.10
Hors ligne
#2073 Le 02/10/2008, à 20:47
- Flegmatik
Re : Conky : Postez vos conkyrc ou certaines parties intéressantes
Pour ton .conkyrc2 il faut que tu adaptes cette ligne : /home/darkn3xx/.conky/conkyForecast.template
Regarde ton conkyrc à cette ligne :
${execi 1800 conkyForecast --location=FRXX0115 --template=/home/darkn3xx/.conky/conkyForecast.template}
Il faut que tu adaptes le chemin en fonction de l'endroit où tu as placé le conkyForecast.template !
Oui c'est une erreur j'ai adapté le chemin
et voici l'erreur :
darkdog@dark-laptop:~$ conky -c /home/darkdog/.conkyrc2
Conky: desktop window (100003f) is subwindow of root window (1a6)
Conky: window type - override
Conky: drawing to created window (4200001)
Conky: drawing to double buffer
Dernière modification par Flegmatik (Le 02/10/2008, à 20:49)
In love with Ubuntu !
Hors ligne
#2074 Le 02/10/2008, à 20:53
- Darkn3xx
Re : Conky : Postez vos conkyrc ou certaines parties intéressantes
Ce n'est pas une erreur, simplement conky qui te donne des informations sur son lancement en mode console
Centrino 1.4Ghz, 512Mo RAM, ATI Radeon 9200 Mobility - Ubuntu 8.10
Hors ligne
#2075 Le 02/10/2008, à 21:02
- Flegmatik
Re : Conky : Postez vos conkyrc ou certaines parties intéressantes
ALors j'ai réussi à le faire afficher correctement, merci pour tes conseils, mais le soucis qui me reste c'est qu'il m'affiche la station Luxueil/St Sauve au lieu de la ville d'Epinal pourtant j'ai bien mis : FRXX0152 qui correspond à la ville d'Epinal
In love with Ubuntu !
Hors ligne