You are not logged in.
unklar wrote:^^WOW, that's cool!
Here in conkyVersion1.10![]()
![]()
Many thanks to you!
Glad you liked it.
Did not expect anyone to even respond it's such a simple thing.
It is the simple things that have it in themselves
Offline
It is the simple things that have it in themselves
TRUTH! Cannot argue with that!
WAHRHEIT! Dem kann man nicht widersprechen!
Glad you like it.
Schön, dass es Ihnen gefällt.
Debian 12 Beardog, SoxDog and still a Conky 1.9er
Offline
OK, while walking around the interwebs today I saw it.
I wanted it so I grabbed it.
Now what good is something you have if you don't use it.
So after a bit of work it's framing a conky.
Debian 12 Beardog, SoxDog and still a Conky 1.9er
Offline
^Sector11, that looks fantastic!
...elevator in the Brain Hotel, broken down but just as well...
( a boring Japan blog (currently paused), now on Bluesky, there's also some GitStuff )
Offline
Thanks John. It's one of those "Just for display" conkys.
And I noticed I have UTC in there twice. {sigh}
But I do like that frame.
Got another project in mind for it was well.
Debian 12 Beardog, SoxDog and still a Conky 1.9er
Offline
An absolutely shitty day. It has been raining continuously for 16 hours and it is freezing cold... :8
So I updated some Conky to version 1.10:
- two weather satellite conky's from @ragamatrix
- Wondergound from @Teo (currently the most reliable app )
- Moon-conky from @Sector11
- a variant of the Accuweather from @loutch
All "pinched" by me and tested for plasma
Sat24.com
-- pkill -xf "conky -c /path/to/conkyrc
-- 2020-09-26 conkyV1.10 @unklar
conky.config = {
-- -- Paramètres Conky Météo -- #
--alignment = 'middle_right',
alignment = 'top_right',
--alignment bottom_left
--alignment = 'bottom_right',
-- -- Conky settings -- #
background = false,
update_interval = 2,
cpu_avg_samples = 2,
net_avg_samples = 2,
override_utf8_locale = true,
double_buffer = true,
no_buffers = true,
text_buffer_size = 2048,
imlib_cache_size = 0,
-- -- Window specifications -- #
own_window = true,
own_window_type = 'normal',
own_window_transparent = true,
own_window_hints = 'undecorated,skip_taskbar,skip_pager,below',
own_window_class = 'Conky',
own_window_argb_visual = true,
--own_window_argb_value = 80,
show_graph_range = false,
show_graph_scale = false,
short_units = true,
border_inner_margin = 0,
border_outer_margin = 0,
-- -- Graphics settings --
draw_shades = false,
draw_outline = false,
draw_borders = false,
draw_graph_borders = true,
-- -- Couleurs --
default_color = '645D5D',
--color1 3B6702
--color2 645D5D
color0 = 'Cornsilk',
color1 = 'black',
color2 = 'white',
color3 = 'EFEFEF',
color4 = 'LightGoldenrod',
color5 = '7FDD4C',
color6 = 'CC0000',
color7 = '884DA7',
color8 = '6892C6',
color9 = '443AFF',
gap_x = 230,
gap_y = 10,
minimum_width = 305, minimum_height = 305,
maximum_width = 305,
--out_to_console no
override_utf8_locale = true,
--stippled_borders 0
total_run_times = 0,
uppercase = false,
-- -- Text settings --
-- Use Xft?
use_xft = true,
xftalpha = 0.8,
font = 'caviar dreams:style=Bold:size=9',
-- LUA --
--lua_load = '~/.conky/scripts/draw_bg.lua',
--lua_draw_hook_pre = 'draw_bg 10 0 0 0 0 0x000000 0.55',
};
conky.text = [[
${texeci 1200 $HOME/.conky/nasa/ragaEUR/script_test_convert.sh}
${image /tmp/imagesat-couvnuage.png -p 0,0 -s 300x300 -f 60}
]];
script_test_convert.sh
#!/bin/bash
# Crée par JPDipsy
# script de recupération imagesat couverture nuageuse http://www.sat24.com
# et mise en forme polaroïd imagemagick et pagecurl doivent être installés
# ce script et le script pagecurl doivent être dans le même rep.
#----------------------------------------------------------------------------------
path=`dirname $0`
heuremodif=`date +%H`; minmodif=`date +%M`
# ce que vous voulez
fonte=monofur
nomimage=imagesat-couvnuage
tailleimage=60 # ceci est en pourcentage
tailledecoupe=440x440
rotation=0
libelle="Sat24.com um "
wget -q -O /tmp/$nomimage.gif "https://www.sat24.com/image.ashx?country=eu&type=zoom&format=640x480001001&rnd=610703"
function mise_en_forme_image {
convert /tmp/$nomimage.png -background gray60 -bordercolor gray60 -border 1% -gravity South -splice 0x22 -density 150 \
-font $fonte -pointsize 10 -annotate 0x10-3+8 "$libelle $heuremodif h $minmodif m" /tmp/$nomimage.png
#creation coin et masque à l'aide du script pagecurl
#composition image finale
convert /tmp/$nomimage.png -background none -alpha set -gravity SouthEast -define compose:outside-overlay=false \
-compose DstIn -composite -resize $tailleimage% -virtual-pixel background \
+distort ScaleRotateTranslate $rotation +repage /tmp/$nomimage.png
#rm /tmp/pagecurl_overlay.png ; rm /tmp/pagecurl_mask.png
##aqua effect
convert /tmp/$nomimage.png -alpha off -fill white -colorize 100% \
-draw 'fill black polygon 0,0 0,15 15,0 fill white circle 15,15 15,0' \
\( +clone -flip \) -compose Multiply -composite \
\( +clone -flop \) -compose Multiply -composite \
-background gray60 -alpha Shape /tmp/thumbnail_mask.png
###aqua effect2
convert /tmp/thumbnail_mask.png -bordercolor None -border 1x1 \
-alpha Extract -blur 0x10 -shade 130x30 -alpha On \
-background gray60 -alpha background -auto-level \
-function polynomial 3.5,-5.05,2.05,0.3 \
\( +clone -alpha extract -blur 0x2 \) \
-channel RGB -compose multiply -composite \
+channel +compose -chop 1x1 \
/tmp/thumbnail_lighting.png
##final
convert /tmp/$nomimage.png -alpha Set /tmp/thumbnail_lighting.png \
\( -clone 0,1 -alpha Opaque -compose Hardlight -composite \) \
-delete 0 -compose In -composite \
/tmp/imagesat-couvnuage.png
}
function ombre {
convert /tmp/$nomimage.png -background dimgray \( +clone -shadow 60x4+2+2 \) +swap -background none -flatten /tmp/$nomimage.png
}
if [[ -e /tmp/$nomimage.gif ]] ; then
# decoupage de la partie utile
convert /tmp/$nomimage.gif -filter Lanczos -crop $tailledecoupe+140+110\! /tmp/$nomimage.png
mise_en_forme_image ; ombre ; rm /tmp/$nomimage.gif
else
# comme ça votre conky aura toujours une image au cas ou
convert -size $tailledecoupe plasma: /tmp/$nomimage.png
libelle="SAT24.com "
mise_en_forme_image ; ombre
fi
infrarot
-- pkill -xf "conky -c /path/to/conkyrc
-- 2020-09-26 conkyV1.10 @unklar
conky.config = {
-- -- Paramètres Conky Météo -- #
--alignment = 'middle_right',
alignment = 'top_right',
--alignment bottom_left
--alignment = 'bottom_right',
gap_x = 230,
gap_y = 330,
minimum_width = 300, minimum_height = 300,
maximum_width = 300,
-- -- Conky settings -- #
background = false,
update_interval = 2,
cpu_avg_samples = 2,
net_avg_samples = 2,
override_utf8_locale = true,
double_buffer = true,
no_buffers = true,
text_buffer_size = 2048,
imlib_cache_size = 0,
-- -- Window specifications --
own_window = true,
own_window_type = 'normal',
own_window_transparent = true,
own_window_hints = 'undecorated,skip_taskbar,skip_pager,below',
own_window_class = 'Conky',
own_window_argb_visual = true,
--own_window_argb_value = 180,
show_graph_range = false,
show_graph_scale = false,
short_units = true,
border_inner_margin = 0,
border_outer_margin = 0,
-- -- Graphics settings --
draw_shades = false,
draw_outline = false,
draw_borders = false,
draw_graph_borders = true,
-- -- Couleurs --
default_color = '645D5D',
--color1 3B6702
--color2 645D5D
color0 = 'Cornsilk',
color1 = 'black',
color2 = 'white',
color3 = 'EFEFEF',
color4 = 'LightGoldenrod',
color5 = '7FDD4C',
color6 = 'CC0000',
color7 = '884DA7',
color8 = '6892C6',
color9 = '443AFF',
total_run_times = 0,
uppercase = false,
--use_spacer no
-- Use Xft?
use_xft = true,
xftalpha = 0.8,--0.4
font = 'caviar dreams:style=Bold:size=9',
-- LUA --
--lua_load = '~/.conky/scripts/draw_bg.lua',
--lua_draw_hook_pre = 'draw_bg 10 0 0 0 0 0x000000 0.55',
};
conky.text = [[
${texeci 1200 $HOME/.conky/ragaEUR/neige.sh}
${image $HOME/.conky/ConkySatMap/satir-1.png -p 0,0 -s 300x300}
]];
neige.sh
#!/bin/bash
file_exists() {
if [ -e "$1" ]; then
return 0
else
return 1
fi
}
PREFIX=${HOME}/.conky/ConkySatMap/
RSAT=${PREFIX}radar-sat
#RSAT_zoom=${PREFIX}radar-satzoom
OUTPUT=${PREFIX}satir-1.png
tailleRSAT=80
#tailleRSAT_zoom=80
tailledecoupe_ir2=692x692
#tailledecoupe_zoom=150x150
################################
################################
#Annotation pour vérifier si l'image est actualisée ##HelveticaLTStd-BlkCond
jour=$(date +%d.%m.%y); heuremodif=$(date +%H); minmodif=$(date +%M)
#fonte=Open-Sans-Bold
libelle=""
TXT=${PREFIX}updated.png
#################################################################
adrS="https://neige.meteociel.fr/satellite/latest-ir-color.gif"
wget -qO "${RSAT}" "${adrS}"
convert ${RSAT} -filter Lanczos -crop $tailledecoupe_ir2+31+57\! ${RSAT}.png
#convert ${RSAT} -filter Lanczos -crop $tailledecoupe_zoom+389+335\! ${RSAT_zoom}.png
#convert ${RSAT_zoom}.png -resize ${tailleRSAT_zoom}% ${RSAT_zoom}
#########################################################
convert ${RSAT}.png -resize ${tailleRSAT}% ${RSAT}.png
convert ${RSAT}.png \
\( +clone -alpha extract \
-draw 'fill black polygon 0,0 0,5 5,0 fill white circle 5,5 5,0' \
\( +clone -flip \) -compose Multiply -composite \
\( +clone -flop \) -compose Multiply -composite \
\) -alpha off -compose CopyOpacity -composite ${RSAT}.png
convert -background transparent -fill white -font monofur -pointsize 28 -gravity center label:"${libelle} ${jour} @ ${heuremodif}:${minmodif}" -trim \
\( +clone -background none -shadow 100x1 -channel A -level 0,6% +channel \) +swap +repage -gravity center -composite ${TXT}
convert $RSAT.png -background dimgray \( +clone -shadow 70x4+4+4 \) +swap -background none -flatten ${OUTPUT}
composite -geometry +35+10 ${TXT} ${OUTPUT} ${OUTPUT}
#composite -geometry +155+10 ${RSAT_zoom} ${OUTPUT} ${OUTPUT}
if file_exists "${HOME}"/.conky/ConkySatMap/radar-sat-*; then
rm "${HOME}"/.conky/ConkySatMap/radar-sat-* "${RSAT}" "${RSAT}.png"
else
rm "${RSAT}" "${RSAT}.png"
fi
exit
wonderground
-- https://forums.bunsenlabs.org/viewtopic.php?pid=2121#p2121
-- pkill -xf "conky -c $HOME/WuPix/wu_pixconkyrc10" &
-- Works perfect: Thu 29 Oct 2015 Sector11 with accuweather modify unklar 15.01.2016
-- modify unklar 2020-02-01 with Wunderground_conky_script
conky.config = {
own_window = true,
own_window_type = 'normal',
own_window_transparent = true, --false,
own_window_hints = 'undecorated,below,skip_taskbar,skip_pager',
-- own_window_colour = '#000000',
-- own_window_class = 'Conky',
-- own_window_title = 'Teo's WUweather',
own_window_argb_visual = true,
-- own_window_argb_value = 120,
minimum_width = 160, minimum_height = 710, -- w|h
maximum_width = 160,
gap_x = 10, -- l|r
gap_y = 10, -- u|d
alignment = 'top_right', --left',
use_xft = true,
font = 'monofur:bold:size=9',
xftalpha = 1,
override_utf8_locale = true,
draw_shades = true,
default_shade_color = '000000',
draw_outline = false,
default_outline_color = '000000',
default_color = 'DCDCDC', --Gainsboro
color0 = 'A9A9A9', --DarkGray
color1 = '778899', --LightSlateGray
color2 = 'F5F5DC', --Beige
color3 = '87CEFA', --LightSkyBlue
color4 = '48D1CC', --MediumTurquoise
color5 = 'FFDEAD', --NavajoWhite
color6 = '00BFFF', --DeepSkyBlue
color7 = 'B0E0E6', --PowderBlue
color8 = 'FFD700', --Gold
color9 = 'FFA07A', --LightSalmon
border_inner_margin = 5,
border_outer_margin = 0,
background = true,
use_spacer = 'none',
no_buffers = true,
-- imlib_cache_size = 0,
double_buffer = true,
imlib_cache_flush_interval =900,
max_user_text = 48552,
update_interval = 2, --0.5
-- LUA --
lua_load = '~/WuPix/script/draw_bg.lua',
lua_draw_hook_pre = 'draw_bg 10 0 0 0 0 0x000000 0.55',
};
conky.text = [[
${texeci 500 bash $HOME/Wunderground_conky_script/wunderground}\
${color5}Current${image $HOME/1_pixel_images/cyan_1.png -p 75,0 -s 1x710}${goto 95}${color7}Mondphase
${color9}${texeci 600 sed -n '52p' $HOME/Wunderground_conky_script/curr_cond}°${color}\
${image $HOME/Wunderground_conky_script/Forecast_Images/Moon_phase.png -p 100,12 -s 30x30}\
${goto 50}${color8}±${texeci 600 sed -n '58p' $HOME/Wunderground_conky_script/curr_cond}°${color}${goto 85}${font monofur:size=8}${execpi 600 sed -n '1p' $HOME/Wunderground_conky_script/moon_data}${font}
${goto 82}${membar 0}
${texeci 600 sed -n '26p' $HOME/Wunderground_conky_script/curr_cond} mb${goto 85}Next 12 hours
${color8}${texeci 600 sed -n '34p' $HOME/Wunderground_conky_script/curr_cond}${color}
UVI ${texeci 600 sed -n '72p' $HOME/Wunderground_conky_script/curr_cond}${goto 85}${tztime GMT-3 %H} h
HUM ${texeci 600 sed -n '36p' $HOME/Wunderground_conky_script/curr_cond} %${goto 100}${texeci 600 sed -n '7p' $HOME/Wunderground_conky_script/hourly}°
${image $HOME/Wunderground_conky_script/Forecast_Images/current.png -p 2,15 -s 45x45}\
${image $HOME/Wunderground_conky_script/Forecast_Images/h1.png -p 115,90 -s 25x25}\
DP ${texeci 600 sed -n '56p' $HOME/Wunderground_conky_script/curr_cond}°${goto 82}${membar 0}
Wind ${texeci 600 sed -n '82p' $HOME/Wunderground_conky_script/curr_cond}${goto 85}${tztime GMT-4 %H} h
@ ${texeci 600 sed -n '86p' $HOME/Wunderground_conky_script/curr_cond} km/h${goto 100}${texeci 600 sed -n '80p' $HOME/Wunderground_conky_script/hourly}°
Vis ${texeci 600 sed -n '78p' $HOME/Wunderground_conky_script/curr_cond} km
Ceil ${texeci 600 sed -n '2p' $HOME/Wunderground_conky_script/curr_cond} m${goto 82}${membar 0}
Prec.${texeci 600 sed -n '22p' $HOME/Wunderground_conky_script/curr_cond} mm${goto 85}${tztime GMT-5 %H} h
ClCov.${texeci 600 sed -n '55p' $HOME/Wunderground_conky_script/hourly} %${goto 100}${texeci 600 sed -n '153p' $HOME/Wunderground_conky_script/hourly}°
${font monofur:size=8}${texeci 600 sed -n '1p' $HOME/Wunderground_conky_script/aktualisiert}${font}
${image $HOME/Wunderground_conky_script/Forecast_Images/h2.png -p 115,140 -s 25x25}\
${image $HOME/Wunderground_conky_script/Forecast_Images/h3.png -p 115,190 -s 25x25}\
${if_match "${texeci 600 sed -n '2p' $HOME/Wunderground_conky_script/10days}" == "Tonight"}\
${membar 0}
${execi 3600 date --date='1 day' '+%a. %e'} \
${goto 85}${tztime GMT-6 %H} h
${image $HOME/Wunderground_conky_script/Forecast_Images/2.png -p 30,250 -s 35x35} \
${goto 100}${texeci 600 sed -n '226p' $HOME/Wunderground_conky_script/hourly}°
${image $HOME/Wunderground_conky_script/Forecast_Images/h4.png -p 115,250 -s 25x25} \
${texeci 600 sed -n '208p' $HOME/Wunderground_conky_script/10days}°${goto 60}${texeci 600 sed -n '210p' $HOME/Wunderground_conky_script/10days}°
${membar 0}
${execi 3600 date --date='2 day' '+%a. %e'} \
${goto 85}${tztime GMT-7 %H} h
${image $HOME/Wunderground_conky_script/Forecast_Images/4.png -p 30,305 -s 35x35} \
${goto 100}${texeci 600 sed -n '299p' $HOME/Wunderground_conky_script/hourly}°
${image $HOME/Wunderground_conky_script/Forecast_Images/h5.png -p 115,305 -s 25x25} \
${texeci 600 sed -n '404p' $HOME/Wunderground_conky_script/10days}°${goto 60}${texeci 600 sed -n '406p' $HOME/Wunderground_conky_script/10days}°
${membar 0}
${execi 3600 date --date='3 day' '+%a. %e'} \
${goto 85}${tztime GMT-8 %H} h
${image $HOME/Wunderground_conky_script/Forecast_Images/6.png -p 30,360 -s 35x35} \
${goto 100}${texeci 600 sed -n '372p' $HOME/Wunderground_conky_script/hourly}°
${image $HOME/Wunderground_conky_script/Forecast_Images/h6.png -p 115,360 -s 25x25} \
${texeci 600 sed -n '600p' $HOME/Wunderground_conky_script/10days}°${goto 60}${texeci 600 sed -n '602p' $HOME/Wunderground_conky_script/10days}°
${membar 0}
${execi 3600 date --date='4 day' '+%a. %e'} \
${goto 85}${tztime GMT-9 %H} h
${image $HOME/Wunderground_conky_script/Forecast_Images/8.png -p 30,412 -s 35x35} \
${goto 100}${texeci 600 sed -n '445p' $HOME/Wunderground_conky_script/hourly}°
${image $HOME/Wunderground_conky_script/Forecast_Images/h7.png -p 115,412 -s 25x25} \
${texeci 600 sed -n '796p' $HOME/Wunderground_conky_script/10days}°${goto 60}${texeci 600 sed -n '798p' $HOME/Wunderground_conky_script/10days}°
${membar 0}
${execi 3600 date --date='5 day' '+%a. %e'} \
${goto 85}${tztime GMT-10 %H} h
${image $HOME/Wunderground_conky_script/Forecast_Images/10.png -p 30,460 -s 35x35} \
${goto 100}${texeci 600 sed -n '518p' $HOME/Wunderground_conky_script/hourly}°
${image $HOME/Wunderground_conky_script/Forecast_Images/h8.png -p 115,460 -s 25x25} \
${texeci 600 sed -n '992p' $HOME/Wunderground_conky_script/10days}°${goto 60}${texeci 600 sed -n '994p' $HOME/Wunderground_conky_script/10days}°
${membar 0}
${execi 3600 date --date='6 day' '+%a. %e'} \
${goto 85}${tztime GMT-11 %H} h
${image $HOME/Wunderground_conky_script/Forecast_Images/12.png -p 30,516 -s 35x35} \
${goto 100}${texeci 600 sed -n '591p' $HOME/Wunderground_conky_script/hourly}°
${image $HOME/Wunderground_conky_script/Forecast_Images/h9.png -p 115,516 -s 25x25} \
${texeci 600 sed -n '1188p' $HOME/Wunderground_conky_script/10days}°${goto 60}${texeci 600 sed -n '1190p' $HOME/Wunderground_conky_script/10days}°
${membar 0}
${execi 3600 date --date='7 day' '+%a. %e'} \
${goto 85}${tztime GMT-12 %H} h
${image $HOME/Wunderground_conky_script/Forecast_Images/14.png -p 30,568 -s 35x35} \
${goto 100}${texeci 600 sed -n '664p' $HOME/Wunderground_conky_script/hourly}°
${image $HOME/Wunderground_conky_script/Forecast_Images/h10.png -p 115,568 -s 25x25} \
${texeci 600 sed -n '1384p' $HOME/Wunderground_conky_script/10days}°${goto 60}${texeci 600 sed -n '1386p' $HOME/Wunderground_conky_script/10days}°
${membar 0}
${execi 3600 date --date='8 day' '+%a. %e'} \
${goto 85}${tztime GMT-13 %H} h
${image $HOME/Wunderground_conky_script/Forecast_Images/16.png -p 30,620 -s 35x35} \
${goto 100}${texeci 600 sed -n '737p' $HOME/Wunderground_conky_script/hourly}°
${image $HOME/Wunderground_conky_script/Forecast_Images/h11.png -p 115,620 -s 25x25} \
${texeci 600 sed -n '1580p' $HOME/Wunderground_conky_script/10days}°${goto 60}${texeci 600 sed -n '1582p' $HOME/Wunderground_conky_script/10days}°
${membar 0}
${execi 3600 date --date='9 day' '+%a. %e'} \
${goto 85}${tztime GMT-14 %H} h
${image $HOME/Wunderground_conky_script/Forecast_Images/18.png -p 30,670 -s 35x35} \
${goto 100}${texeci 600 sed -n '810p' $HOME/Wunderground_conky_script/hourly}°
${image $HOME/Wunderground_conky_script/Forecast_Images/h12.png -p 115,670 -s 25x25} \
${texeci 600 sed -n '1776p' $HOME/Wunderground_conky_script/10days}°${goto 60}${texeci 600 sed -n '1778p' $HOME/Wunderground_conky_script/10days}°
${membar 0}
${else}
${membar 0}
${execi 3600 date --date='1 day' '+%a. %e'} \
${goto 85}${tztime GMT-6 %H} h
${image $HOME/Wunderground_conky_script/Forecast_Images/3.png -p 30,250 -s 35x35} \
${goto 100}${texeci 600 sed -n '226p' $HOME/Wunderground_conky_script/hourly}°
${image $HOME/Wunderground_conky_script/Forecast_Images/h4.png -p 115,250 -s 25x25} \
${texeci 600 sed -n '208p' $HOME/Wunderground_conky_script/10days}°${goto 60}${texeci 600 sed -n '210p' $HOME/Wunderground_conky_script/10days}°
${membar 0}
${execi 3600 date --date='2 day' '+%a. %e'} \
${goto 85}${tztime GMT-7 %H} h
${image $HOME/Wunderground_conky_script/Forecast_Images/5.png -p 30,305 -s 35x35} \
${goto 100}${texeci 600 sed -n '299p' $HOME/Wunderground_conky_script/hourly}°
${image $HOME/Wunderground_conky_script/Forecast_Images/h5.png -p 115,305 -s 25x25} \
${texeci 600 sed -n '404p' $HOME/Wunderground_conky_script/10days}°${goto 60}${texeci 600 sed -n '406p' $HOME/Wunderground_conky_script/10days}°
${membar 0}
${execi 3600 date --date='3 day' '+%a. %e'} \
${goto 85}${tztime GMT-8 %H} h
${image $HOME/Wunderground_conky_script/Forecast_Images/7.png -p 30,360 -s 35x35} \
${goto 100}${texeci 600 sed -n '372p' $HOME/Wunderground_conky_script/hourly}°
${image $HOME/Wunderground_conky_script/Forecast_Images/h6.png -p 115,360 -s 25x25} \
${texeci 600 sed -n '600p' $HOME/Wunderground_conky_script/10days}°${goto 60}${texeci 600 sed -n '602p' $HOME/Wunderground_conky_script/10days}°
${membar 0}
${execi 3600 date --date='4 day' '+%a. %e'} \
${goto 85}${tztime GMT-9 %H} h
${image $HOME/Wunderground_conky_script/Forecast_Images/9.png -p 30,412 -s 35x35} \
${goto 100}${texeci 600 sed -n '445p' $HOME/Wunderground_conky_script/hourly}°
${image $HOME/Wunderground_conky_script/Forecast_Images/h7.png -p 115,412 -s 25x25} \
${texeci 600 sed -n '796p' $HOME/Wunderground_conky_script/10days}°${goto 60}${texeci 600 sed -n '798p' $HOME/Wunderground_conky_script/10days}°
${membar 0}
${execi 3600 date --date='5 day' '+%a. %e'} \
${goto 85}${tztime GMT-10 %H} h
${image $HOME/Wunderground_conky_script/Forecast_Images/11.png -p 30,460 -s 35x35} \
${goto 100}${texeci 600 sed -n '518p' $HOME/Wunderground_conky_script/hourly}°
${image $HOME/Wunderground_conky_script/Forecast_Images/h8.png -p 115,460 -s 25x25} \
${texeci 600 sed -n '992p' $HOME/Wunderground_conky_script/10days}°${goto 60}${texeci 600 sed -n '994p' $HOME/Wunderground_conky_script/10days}°
${membar 0}
${execi 3600 date --date='6 day' '+%a. %e'} \
${goto 85}${tztime GMT-11 %H} h
${image $HOME/Wunderground_conky_script/Forecast_Images/13.png -p 30,516 -s 35x35} \
${goto 100}${texeci 600 sed -n '591p' $HOME/Wunderground_conky_script/hourly}°
${image $HOME/Wunderground_conky_script/Forecast_Images/h9.png -p 115,516 -s 25x25} \
${texeci 600 sed -n '1188p' $HOME/Wunderground_conky_script/10days}°${goto 60}${texeci 600 sed -n '1190p' $HOME/Wunderground_conky_script/10days}°
${membar 0}
${execi 3600 date --date='7 day' '+%a. %e'} \
${goto 85}${tztime GMT-12 %H} h
${image $HOME/Wunderground_conky_script/Forecast_Images/15.png -p 30,568 -s 35x35} \
${goto 100}${texeci 600 sed -n '664p' $HOME/Wunderground_conky_script/hourly}°
${image $HOME/Wunderground_conky_script/Forecast_Images/h10.png -p 115,568 -s 25x25} \
${texeci 600 sed -n '1384p' $HOME/Wunderground_conky_script/10days}°${goto 60}${texeci 600 sed -n '1386p' $HOME/Wunderground_conky_script/10days}°
${membar 0}
${execi 3600 date --date='8 day' '+%a. %e'} \
${goto 85}${tztime GMT-13 %H} h
${image $HOME/Wunderground_conky_script/Forecast_Images/17.png -p 30,620 -s 35x35} \
${goto 100}${texeci 600 sed -n '737p' $HOME/Wunderground_conky_script/hourly}°
${image $HOME/Wunderground_conky_script/Forecast_Images/h11.png -p 115,620 -s 25x25} \
${texeci 600 sed -n '1580p' $HOME/Wunderground_conky_script/10days}°${goto 60}${texeci 600 sed -n '1582p' $HOME/Wunderground_conky_script/10days}°
${membar 0}
${execi 3600 date --date='9 day' '+%a. %e'} \
${goto 85}${tztime GMT-14 %H} h
${image $HOME/Wunderground_conky_script/Forecast_Images/19.png -p 30,670 -s 35x35} \
${goto 100}${texeci 600 sed -n '810p' $HOME/Wunderground_conky_script/hourly}°
${image $HOME/Wunderground_conky_script/Forecast_Images/h12.png -p 115,670 -s 25x25} \
${texeci 600 sed -n '1776p' $HOME/Wunderground_conky_script/10days}°${goto 60}${texeci 600 sed -n '1778p' $HOME/Wunderground_conky_script/10days}°
${membar 0}
${endif}\
${alignc}${font monofur:size=8}${cpu cpu1} | ${cpu cpu2} | ${cpu cpu3} | ${cpu cpu4}${font}
]];
moon
-- pkill -xf "conky -c /path/to/conkyrc
-- 2020-09-26 conkyV1.10 @unklar
conky.config = {
--## Begin Window Settings ##################################################
own_window = true,
own_window_type = 'normal',
own_window_transparent = true,
own_window_hints = 'undecorated,below,skip_taskbar,skip_pager',
--own_window_colour = '000000',
own_window_class = 'Conky',
own_window_argb_visual = true,
--own_window_argb_value 255
--own_window_title 4_Moon Teo Style
minimum_width = 480, minimum_height = 150,
--maximum_width = 480,
gap_x = 230, -- l|r
gap_y = 650, -- u|d
alignment = 'top_right',
--################################################### End Window Settings ###
--## Font Settings ##########################################################
-- Use Xft (anti-aliased font and stuff)
use_xft = true,
--xftfont Fantasque Sans Mono:bold:size=9
font = 'monofur:size=8',
-- Alpha of Xft font. Must be a value at or between 1 and 0 ###
xftalpha = 1.0,
-- Force UTF8? requires XFT ###
override_utf8_locale = true,
uppercase = false,
--##################################################### End Font Settings ###
--## Color Settings #########################################################
draw_shades = true,
default_shade_color = '000000',
draw_outline = false,
default_outline_color = '000000',
default_color = 'DCDCDC',--Gainsboro
color0 = '8FBC8F',--DarkSeaGreen
color1 = '778899',--LightSlateGray
color2 = 'F5F5DC',--Beige
color3 = '87CEFA',--LightSkyBlue
color4 = '48D1CC',--MediumTurquoise
color5 = 'FFDEAD',--NavajoWhite
color6 = '00BFFF',--DeepSkyBlue
color7 = 'B0E0E6',--PowderBlue
color8 = 'FFD700',--Gold
color9 = 'CD5C5C',--IndianRed
--#################################################### End Color Settings ###
--## Borders Section ########################################################
draw_borders = false,
-- Stippled borders?
stippled_borders = 5,
-- border margins
border_inner_margin = 5,
border_outer_margin = 0,
-- border width
border_width = 2,
-- graph borders
draw_graph_borders = true,--no
--default_graph_size 15 40
--#################################################### End Borders Secton ###
--## Miscellaneous Section ##################################################
-- Boolean value, if true, Conky will be forked to background when started.
background = true,
-- Adds spaces around certain objects to stop them from moving other things
-- around, this only helps if you are using a mono font
-- Options: right, left or none
use_spacer = 'none',
-- Default and Minimum size is 256 - needs more for single commands that
-- "call" a lot of text IE: bash scripts
--text_buffer_size 6144
-- Subtract (file slystem) buffers from used memory?
no_buffers = true,
-- change GiB to G and MiB to M
short_units = true,
-- Like it says, ot pads the decimals on % values
-- doesn't seem to work since v1.7.1
pad_percents = 2,
-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use
-- $image lots. Set to 0 to disable th0e image cache.
imlib_cache_size = 0,
-- Use the Xdbe extension? (eliminates flicker)
-- It is highly recommended to use own window with this one
-- so double buffer won't be so big.
double_buffer = true,
--############################################# End Miscellaneous Section ###
update_interval = 2,
-- LUA --
--lua_load = '~/.conky/scripts/draw_bg.lua',
--lua_draw_hook_pre = 'draw_bg 10 0 0 0 0 0x000000 0.55',
};
conky.text = [[
${texeci 500 $HOME/4_Moon/moon_MoonGiant}\
${image $HOME/4_Moon/-2.png -p 136,20 -s 45x45}\
${image $HOME/4_Moon/-1.png -p 136,90 -s 45x45}\
${image $HOME/4_Moon/0.png -p 300,45 -s 80x80}\
${image $HOME/4_Moon/1.png -p 520,20 -s 45x45}\
${image $HOME/4_Moon/2.png -p 520,90 -s 45x45}\
${goto 135}${execi 3600 echo `date --date="-2 day" | awk '{print $1" "$2" "$3}'`}\
${goto 332}Today\
${goto 520}${execi 3600 echo `date --date="1 day" | awk '{print $1" "$2" "$3}'`}
${goto 210} Illumination:${goto 410}${execpi 600 sed -n '1p' $HOME/4_Moon/raw}
${goto 210} Sun Angle:${goto 410}${execpi 600 sed -n '2p' $HOME/4_Moon/raw}°
${goto 210} Sun Distance:${goto 410}${execpi 600 sed -n '3p' $HOME/4_Moon/raw} km
${goto 135}${execi 3600 echo `date --date="-1 day" | awk '{print $1" "$2" "$3}'`}\
${goto 210}Moon Distance:${goto 410}${execpi 600 sed -n '4p' $HOME/4_Moon/raw} km\
${goto 520}${execi 3600 echo `date --date="2 day" | awk '{print $1" "$2" "$3}'`}
${goto 210} Moon Age:${goto 410}${execpi 600 sed -n '5p' $HOME/4_Moon/raw} days
${goto 210} Moon Angle:${goto 410}${execpi 600 sed -n '6p' $HOME/4_Moon/raw}°
${goto 210} Phase:${goto 410}${execpi 600 sed -n '7p' $HOME/4_Moon/raw}
${goto 210} Moonrise/Set:${goto 410}${execpi 600 sed -n '8p' $HOME/4_Moon/raw}
]];
accuweather
-- pkill -xf "conky -c /path/to/conkyrc
-- 2020-09-26 conkyV1.10 @unklar
conky.config = {
own_window = true,
own_window_type = 'normal',
own_window_transparent = true,
own_window_hints = 'undecorated,skip_taskbar,skip_pager,below',
--own_window_colour 000000
own_window_argb_visual = true,
--own_window_argb_value = 80,
own_window_class = 'Conky',
minimum_width = 660, minimum_height = 220,
--maximum_width 655
gap_x = 10,-- l|r
gap_y = 30,-- u|d
alignment = 'bottom_right',
--alignment ml
--alignment mr
use_xft = true,
font = 'GE Inspira:size=9',
xftalpha = 1,
override_utf8_locale = true,
draw_shades = false,
default_shade_color = '000000',
draw_outline = false,
default_outline_color = '000000',
default_color = 'ffffff',
color1 = '778899',
color2 = 'FFA07A',
color3 = '87CEFA',
color4 = '48D1CC',
color5 = 'FFDEAD',
color6 = '00BFFF',
color7 = 'ffffff', --<
color8 = 'FFD700',
color9 = 'ffffff', --<
draw_borders = false,
stippled_borders = 5,
border_inner_margin = 5,
border_outer_margin = 0,
border_width = 2,
draw_graph_borders = false,
background = false,
use_spacer = 'none',
no_buffers = true,
double_buffer = true,
update_interval = 1,
lua_load = '~/mga5/script/image.lua',
};
conky.text = [[
##### Start #####
${texeci 500 bash $HOME/Accuweather_conky_script/accuweather -f2015 -h2015}
##### Zeit #####
${voffset -35}${font GE Inspira:size=55}${time %H}:${time %M}${font GE Inspira:size=20}${color 808080}${goto 180}${time %S}${color}${font}
##### Datum #####
${voffset -55}${font GE Inspira:size=14}${alignc -60}${time %A, %d. %B %Y}${font}
##### Wind-Info-Anzeige ######
${goto 310}${font GE Inspira:size=12}Wind : ${execi 90 sed -n '5p' $HOME/Accuweather_conky_script/curr_cond} ${execi 90 sed -n '6p' $HOME/Accuweather_conky_script/curr_cond}
${goto 310}Humidity : ${execi 90 sed -n '7p' $HOME/Accuweather_conky_script/curr_cond}
${goto 310}Pressure : ${execi 90 sed -n '8p' $HOME/Accuweather_conky_script/curr_cond}
#### Stadt ####
${voffset -5}${font GE Inspira:size=14}Lichtenstein : ${font} ${execi 90 sed -n '1p' $HOME/Accuweather_conky_script/aktualisiert}
${font GE Inspira:size=18}${goto 135}${execi 90 sed -n '2p' $HOME/Accuweather_conky_script/curr_cond} °C ${font} Gefühlt : ${voffset -12}${font GE Inspira:size=18}${execi 90 sed -n '3p' $HOME/Accuweather_conky_script/curr_cond} °C
${goto 555}${voffset -124}${font ubuntu:size=11}N ${font}
${goto 522}${voffset 8}${font Ubuntu:size=6}NNW ${goto 583}NNE${font}
${goto 493}${voffset -6}${font Ubuntu:size=9}NW ${goto 611}NE${font}
${goto 486}${voffset 10}${font Ubuntu:size=6}WNW ${goto 618}ENE${font}
${goto 468}${voffset 5}${font Ubuntu:size=11}W ${goto 641}E${font}
${goto 486}${voffset 9}${font Ubuntu:size=6}WSW ${goto 618}ESE${font}
${goto 493}${voffset 16}${font Ubuntu:size=9}SW ${goto 611}SE${font}
${goto 522}${voffset -4}${font Ubuntu:size=6}SSW ${goto 583}SSE
${goto 555}${voffset 4}${font Ubuntu:size=11}S ${font}
#### Anzeige der nächsten drei Stunden und drei Tage ####
${voffset -80}${goto 20}${tztime GMT-3 %H} h\
${goto 95}${tztime GMT-4 %H} h\
${goto 170}${tztime GMT-5 %H} h\
${goto 245}${execi 3600 echo `date --date="1 day" | awk '{print $1" "$2}'`}\
${goto 320}${execi 3600 echo `date --date="2 day" | awk '{print $1" "$2}'`}\
${goto 400}${execi 3600 echo `date --date="3 day" | awk '{print $1" "$2}'`}
##### Temperaturanzeige #####
${voffset 25}
Temp${goto 40}${execi 90 sed -n '4p' $HOME/Accuweather_conky_script/hourly}°\
${goto 100}${execi 90 sed -n '34p' $HOME/Accuweather_conky_script/hourly}°\
${goto 180}${execi 90 sed -n '64p' $HOME/Accuweather_conky_script/hourly}°\
${goto 245}${color9}${execi 90 sed -n '11p' $HOME/Accuweather_conky_script/daily_forecast}°${color}/${color7}${execi 90 sed -n '12p' $HOME/Accuweather_conky_script/daily_forecast}°${color}\
${goto 320}${color9}${execi 90 sed -n '18p' $HOME/Accuweather_conky_script/daily_forecast}°${color}/${color7}${execi 90 sed -n '19p' $HOME/Accuweather_conky_script/daily_forecast}°${color}\
${goto 400}${color9}${execi 90 sed -n '25p' $HOME/Accuweather_conky_script/daily_forecast}°${color}/${color7}${execi 90 sed -n '26p' $HOME/Accuweather_conky_script/daily_forecast}°${color}
#### Icons aktuelle Bedingungen und Wind ####
${lua fDrawImage $HOME/Accuweather_conky_script/forecast_2015/forecast_0.png 180 5 132 80 0}${lua fDrawImage $HOME/Accuweather_conky_script/forecast_2015/wind_0.png 465 12 190 190 0}\
#### Icons für die nächsten 3 Stunden und 3 Tage ####
${lua fDrawImage $HOME/Accuweather_conky_script/hourly_2015/hourly_2.png 0 145 70 40 0}\
${lua fDrawImage $HOME/Accuweather_conky_script/hourly_2015/hourly_3.png 75 145 70 40 0}\
${lua fDrawImage $HOME/Accuweather_conky_script/hourly_2015/hourly_4.png 150 145 70 40 0}\
${lua fDrawImage $HOME/Accuweather_conky_script/forecast_2015/forecast_1.png 225 145 70 40 0}\
${lua fDrawImage $HOME/Accuweather_conky_script/forecast_2015/forecast_2.png 300 145 70 40 0}\
${lua fDrawImage $HOME/Accuweather_conky_script/forecast_2015/forecast_3.png 380 145 70 40 0}
${voffset -800}
]];
image.lua
require 'cairo'
home = os.getenv ('HOME')
--Fonction d'affichage
function conky_fDrawImage(path,x,y,w,h,arc)
path = string.gsub(path, "~", home)
path = string.gsub(path, "$HOME", home)
local cs = cairo_xlib_surface_create(conky_window.display, conky_window.drawable, conky_window.visual, conky_window.width, conky_window.height)
local function fDrawImage(path,x,y,w,h,arc)
x=x+(w/2)
y=y+(h/2)
local img = cairo_image_surface_create_from_png(path)
local w_img, h_img = cairo_image_surface_get_width (img), cairo_image_surface_get_height (img)
local cr = cairo_create (cs)
cairo_translate (cr, x, y)
if arc then
cairo_rotate (cr, arc)
end
cairo_scale (cr, w/w_img, h/h_img)
cairo_set_source_surface (cr, img, -w_img/2, -h_img/2)
cairo_paint (cr)
cairo_destroy(cr)
cairo_surface_destroy (img)
end
fDrawImage(path,x,y,w,h,arc)
cairo_surface_destroy(cs)
return ""
end
Offline
An absolutely shitty day. It has been raining continuously for 16 hours and it is freezing cold... :8
Must be one huge rain storm. It started here last night before we went to bed and continued until about an hour ago. At 11am it was still "dark" out. So today I went on a nostalgic conky trip when I started checking out my SSC folder (StartStopConky¹):
Tried to get 13:13:13 but missed by a hair.
The one on the extreme right has been "updated" to match mu system as it is today. No sensors available due to NEW CPU. HDD temp is available but I took it out, and of course upgraded "eth0" to the new improved(?) "enp5s0".
Still like the "vnstats" info in those old conkys. Today I just call up my dedicated vnstat conky.
_____
¹ - Start conky(s) if not running, Stop conky(s) if running.
So I updated some Conky to version 1.10:
- two weather satellite conky's from @ragamatrix
- Wondergound from @Teo (currently the most reliable app)
- Moon-conky from @Sector11
- a variant of the Accuweather from @loutchAll "pinched" by me and tested for plasma
Very nice indeed. ragamatrix and loutch are excellent 'conkystadors'.
I have many {cough cough} "copies" of their work here.
Debian 12 Beardog, SoxDog and still a Conky 1.9er
Offline
Must be one huge rain storm. It started here last night before we went to bed and continued until about an hour ago. At 11am it was still "dark" out. So today I went on a nostalgic conky trip when I started checking out my SSC folder (StartStopConky¹):
Tried to get 13:13:13 but missed by a hair.
^Thank you, for your contribution, it made me smile and made the day more pleasant
A wonderful picture(Conky) overview.
No sensors available due to NEW CPU.
Can you explain that in more detail?
...and of course upgraded "eth0" to the new improved(?) "enp5s0".
"improved(?)", I fear it is a legend
Still like the "vnstats" info in those old conkys. Today I just call up my dedicated vnstat conky.
your vnstatrc is also a legend, which taught me a lot
Offline
^Thank you, for your contribution, it made me smile and made the day more pleasant
![]()
A wonderful picture(Conky) overview.
I'm glad it gave you a smile my friend.
I was bored because of the cold rain - that is still with us today.
Not a heavy rain but still a cold rainy day again, the humidity is a killer!
27 Sep 20 @ 11:03:49 ~
$ inxi -wxxx -c24
Weather:
Temperature: 12.8 C (55 F) Conditions: Overcast clouds
Wind: from WSW at 3.1 m/s (11 km/h, 7 mph) Cloud Cover: 100% Humidity: 95%
Dew Point: 12 C (54 F) Pressure: 1001.8 mb (33 in)
Location: General San Martín, Caseros, 01, ARG Current Time: Sun 27 Sep
2020 11:03:58 AM -03 (America/Argentina/Buenos_Aires)
Observation Time: Sun 27 Sep 2020 10:01:00 AM -03 Source: WeatherBit.io
No sensors available due to NEW CPU.
Can you explain that in more detail?
I have an AMD Ryzen 3000 Series CPU, sensors detect does not support it yet.
Linux 5.4 Brings Working Temperature Reporting For AMD Ryzen 3000 Series CPUs
Debian 10 = Kernel: 4.19.0-10-amd64 x86_64
I may have to buy an older motherboard & CPU to get things working right.
Which I am NOT happy about. This is too new for Linux.
...and of course upgraded "eth0" to the new improved(?) "enp5s0".
"improved(?)", I fear it is a legend
Exactly! That's why I put the (?) in there.
Still like the "vnstats" info in those old conkys. Today I just call up my dedicated vnstat conky.
your vnstatrc is also a legend, which taught me a lot
That conky came about back in my Xubuntu days when someone in the conky thread asked if conky could show net usage as he had a monthly "limit". So it has been around a long time. And my version of it has not needed tweaking, or to quote you "pinching" in a long time. It just works. It was quite the learning experience for me too.
Debian 12 Beardog, SoxDog and still a Conky 1.9er
Offline
No sensors available due to NEW CPU.
unklar wrote:Can you explain that in more detail?
I have an AMD Ryzen 3000 Series CPU, sensors detect does not support it yet.
Linux 5.4 Brings Working Temperature Reporting For AMD Ryzen 3000 Series CPUs
Debian 10 = Kernel: 4.19.0-10-amd64 x86_64I may have to buy an older motherboard & CPU to get things working right.
Which I am NOT happy about. This is too new for Linux.
I don't think this is a good idea if installing a higher kernel is the solution.
If you agree, I would like to ask @towo, the kernel builder from siduction, which kernel he suggests to solve your problem.
But for this I would need the output of inxi -Fxz from you.
Offline
I don't think this is a good idea if installing a higher kernel is the solution.
![]()
If you agree, I would like to ask @towo, the kernel builder from siduction, which kernel he suggests to solve your problem.
But for this I would need the output of inxi -Fxz from you.
PM sent with additional info.
Debian 12 Beardog, SoxDog and still a Conky 1.9er
Offline
hello
Here with wwttr.in
wttr for drawbg
conky.config = {
background = true,
use_xft = true,
font = 'Liberation Sans:size=7',
xftalpha = 1,
update_interval = 1.0,
total_run_times = 0,
own_window = true,
own_window_transparent = true,
--own_window_color 000000
own_window_argb_visual = true,
--own_window_argb_value = 250,
own_window_type = 'normal',
own_window_hints = 'undecorated,below,skip_taskbar,skip_pager',
double_buffer = true,
minimum_width = 689, minimum_height = 340,
maximum_width = 689,
text_buffer_size = 2048,
draw_shades = false,
draw_outline = false,
draw_borders = false,
draw_graph_borders = false,
default_color = 'white',
default_outline_color = 'white',
alignment = 'top_right',
gap_x = 66,
gap_y = 398,
no_buffers = true,
uppercase = false,
cpu_avg_samples = 2,
override_utf8_locale = true,
imlib_cache_flush_interval = 60,
imlib_cache_size = 10000,
-- Taille des pointillés
stippled_borders = 5,
-- Couleurs
default_color = 'black',--ffd579
default_shade_color = '#333333',
default_outline_color = 'black',
lua_load = '~/.conky/wttr/draw_bg.lua',
lua_draw_hook_pre = 'draw_bg',
};
conky.text = [[
]];
wttr1 (conky)
conky.config = {
background = true,
use_xft = true,
font = 'Liberation Sans:size=7',
xftalpha = 1,
update_interval = 1.0,
total_run_times = 0,
own_window = true,
own_window_transparent = true,
--own_window_color 000000
own_window_argb_visual = true,
--own_window_argb_value = 250,
own_window_type = 'normal',
own_window_hints = 'undecorated,below,skip_taskbar,skip_pager',
double_buffer = true,
minimum_width = 720, minimum_height = 1010,
maximum_width = 720,
text_buffer_size = 2048,
draw_shades = false,
draw_outline = false,
draw_borders = false,
draw_graph_borders = false,
default_color = 'white',
default_outline_color = 'white',
alignment = 'top_right',
gap_x = 00,
gap_y = 00,
no_buffers = true,
uppercase = false,
cpu_avg_samples = 2,
override_utf8_locale = true,
imlib_cache_flush_interval = 60,
imlib_cache_size = 10000,
-- Taille des pointillés
stippled_borders = 5,
-- Couleurs
default_color = 'black',--ffd579
default_shade_color = '#333333',
default_outline_color = 'black',
lua_load = '~/.conky/lua/image.lua',
};
conky.text = [[
${execi 3600 wget ~/.conky/wttr/wttrs}
${lua fDrawImage ~/.conky/wttr/Sarreguemines_lang=fr_Q.png 00 00 700 340}
${lua fDrawImage ~/.conky/wttr/Sarreguemines_0tqp_lang=fr.png 00 345 700 350}
${lua fDrawImage ~/.conky/wttr/moon_lang=fr_Q.png 80 700 528 322}
]];
script wttrs
#!/bin/bash
#Créé par Loutch le 2020-09-27
rm $HOME/.conky/wttr/Sarreguemines_0tqp_lang=fr.png
rm $HOME/.conky/wttr/Sarreguemines_lang=fr_Q.png
rm $HOME/.conky/wttr/moon_lang=fr_Q.png
wget wttr.in/Sarreguemines_lang=fr_Q.png
wget v2d.wttr.in/Sarreguemines_0tqp_lang=fr.png
wget wttr.in/moon_lang=fr_Q.png
exit
Linuxmint 22.1 Xia xfce & mageia 9 XFCE on ssd hp pavilion g7
Xubuntu 18.04 lts & 24.04 lts on ASUS Rog STRIX
Offline
hello
Here with wwttr.in
Hi loutch
Not a conky but check this one liner out:
alias caba='curl wttr.in/buenos+aires?format="+Buenos+Aires,+Argentina\n+%C\n+T:+%t+ST:+%f+Hum:+%h\n+Wind:+%w+BAR:+%P+Rain:+%p\n+Dawn:+%D+SunRise:+%S\n+Zenith:+%z\n+Sunset:+%s+Dusk:+%d\n"'
Debian 12 Beardog, SoxDog and still a Conky 1.9er
Offline
Hi Sector11
great .
Sarreguemines, France
Light rain
T: +9°C ST: +7°C Hum: 93%
Wind: ↗26km/h BAR: 1006hPa Rain: 2.5mm
Dawn: 07:05:44 SunRise: 07:38:01
Zenith: 13:20:08
Sunset: 19:01:08 Dusk: 19:33:21
Linuxmint 22.1 Xia xfce & mageia 9 XFCE on ssd hp pavilion g7
Xubuntu 18.04 lts & 24.04 lts on ASUS Rog STRIX
Offline
Hi Sector11
great .
Sarreguemines, France Light rain T: +9°C ST: +7°C Hum: 93% Wind: ↗26km/h BAR: 1006hPa Rain: 2.5mm Dawn: 07:05:44 SunRise: 07:38:01 Zenith: 13:20:08 Sunset: 19:01:08 Dusk: 19:33:21
↑ ↑ ↑ ↑ ↑
Debian 12 Beardog, SoxDog and still a Conky 1.9er
Offline
Make the red on the clock "dimmer" and then: The right.
Red is my least favourite colour.
Last edited by Sector11 (2020-10-17 16:05:01)
Debian 12 Beardog, SoxDog and still a Conky 1.9er
Offline
^^ & ^ I like the left more but would make the blue-grey darker.
BTW: Where did you get this LCDish font from? All I ever found are unusable for stuff like that because the don't .. you know... line up.
Naik --greetz
"Kaum macht [Mensch]* es richtig, funktioniert es sofort!"
BL-Kitchen Codeberg
Offline
The font is:
LED_mono
the line to do that is:
${goto 13}${color1}88:88:88${goto 13}${color2}${time %T}${color}
Change ${got xx} and ${color x} to your choice.
cannot remember where I got it and searching doesn't seem to help.
EDIT: OK, sent via email
Last edited by Sector11 (2020-10-17 16:02:17)
Debian 12 Beardog, SoxDog and still a Conky 1.9er
Offline