You are not logged in.
Hello guys
This morning ListePression.log is empty (just two call)
this in conky
Unlike the week, which displays the dates, there's no time display here.
One more thing missing
@+
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
I think the date shows up at the point (proportionally in the display) where it changes according to the entries in that log, with only two entries, which could well be on the same date, I doubt it'll show.
There's probably a way to have it put the hour there rather than the date, but that's well beyond my skillset, you'll need to wait for someone who has an actual clue when it comes to setting up a conky, & I'm afraid that's not me.
Blessed is he who expecteth nothing, for he shall not be disappointed...
If there's an obscure or silly way to break it, but you don't know what.. Just ask me
Offline
RE
In any case, thanks again for your help.
@+
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
A one-line conky stolen from @Sector11 when we were still fooling around in the AL forum and he and @natemaia “created” an arrow as a second hand on the far right
To the previous story.
Since the 'jumping' of a Conky bothers me when it displays dynamic information, I've avoided it as much as possible. Also, this laptop (hp) is constantly changing the device files that can be read with hwmon.
$ for m in /sys/class/hwmon/* ; do echo -n “$m = ” ; cat $m/name ; done
/sys/class/hwmon/hwmon0 = acpitz
/sys/class/hwmon/hwmon1 = BAT0
/sys/class/hwmon/hwmon2 = ADP1
/sys/class/hwmon/hwmon3 = pch_skylake
/sys/class/hwmon/hwmon4 = coretemp
/sys/class/hwmon/hwmon5 = hp
/sys/class/hwmon/hwmon6 = iwlwifi_1
/sys/class/hwmon/hwmon7 = nouveau
/sys/class/hwmon/hwmon8 = hidpp_battery_0
I was too lazy for if_existing.
from left
-Boot time of the computer
-Weather (symbols are only displayed correctly with the font 'fonts-symbola')
'format=1' is a shortened form and looks like this
-Castrated kernel specification
-CPU (with the trick of the zeros, against the 'jumping')
-Network (wlan quality; bitrate throughput; download speed)
Have fun.
BTW, for those who don't know, lua definitely does not work with Wayland.
conky.config = {
-- pkill -xf "conky -c /home/unklar/TEST/s11game.conf" &
-- @unklar 13.08.2024 works
background = false, --true,
--font settings
use_xft = true,
--font = 'monospace:size=12',
--font = 'monofur:size=14',
font = 'Fira Mono:size=12',
uppercase = false,
-- update every 3 secs
update_interval = 1,
-- stay running forever
total_run_times = 0,
-- draw to root window
own_window = true,
own_window_type = 'normal',
own_window_transparent = true,
own_window_hints = 'skip_taskbar,skip_pager,below,undecorated,sticky',
--own_window_colour = '#144556',--ffffff
own_window_argb_visual = true,
--own_window_argb_value = 180,
--own_window_class = 'Conky',
--own_window_title = 'TEST',
-- avoid flickering
double_buffer = true,
-- size
minimum_width = 0, minimum_height = 0, --300,
maximum_width = 0,
-- position
alignment = 'top_middle', --left',
gap_x = 0, --25,
gap_y = 0, --25,
-- colors
default_color = '#ffffff',
default_shade_color = '#000000',
default_outline_color = '#000000',
color0 = '#ffffff',--#white
color1 = '#144556',--#dunkelblue
color2 = '#33b0dc',--#hellblue
color3 = '#ff8c00',--#dark orange
color4 = '#00ffff',--#cain
color5 = '#c0c0c0',--#silver
color6 = '#808080',--#gray
-- borders
draw_borders = false,
stippled_borders = 8,
--border_inner_margin 4
border_width = 1,
-- shades
draw_shades = false,
-- outline
draw_outline = false,
-- spacer
use_spacer = 'left', --none',
-- buffers
no_buffers = true,
-- sampling
cpu_avg_samples = 2,
net_avg_samples = 2,
--${uptime_short}
--DejaVu Sans--
--+%c+%t+%w+%P+%h+%m
--|jq --unbuffered --compact-output -M -R}
};
conky.text = [[
${color5} ↑ ${color}${execi 86400 who -b | cut -c23-}\
${color5} ·|· ${color}\
${voffset -2}${font symbola:size=13}${texeci 600 curl -s 'https://wttr.in/lichtenstein_sachsen?format=2'}${font} \
${color5} ·|· ${color}\
${exec uname -r | cut -d '-' -f1}\
${color5} ·|· ${color}\
RAM ${legacymem} / ${memmax}\
${color5} ·|· ${color}\
CPU ${if_match ${cpu cpu0}<10}00${cpu cpu0}\
${else}${if_match ${cpu cpu0}<100}0${cpu cpu0}\
${else}${cpu cpu0}${endif}${endif}%\
${color5} ·|· ${color}\
NET${wireless_link_qual_perc wlan0}% / ${wireless_bitrate wlan0} | ${downspeed wlan0} \
${color5} ·|· ${color}\
${time %H}${color5}·${color}${tztime Europe/Berlin %M}${color5}#${exec seconds}${color}${time %S}
]];
Last edited by unklar (2024-08-27 12:28:42)
Offline
You cannot steal what is freely given.
Looking good there unklar.
Debian 12 Beardog, SoxDog and still a Conky 1.9er
Offline
{snip}
To the previous story.
Since the 'jumping' of a Conky bothers me when it displays dynamic information, I've avoided it as much as possible. Also, this laptop (hp) is constantly changing the device files that can be read with hwmon.$ for m in /sys/class/hwmon/* ; do echo -n “$m = ” ; cat $m/name ; done /sys/class/hwmon/hwmon0 = acpitz /sys/class/hwmon/hwmon1 = BAT0 /sys/class/hwmon/hwmon2 = ADP1 /sys/class/hwmon/hwmon3 = pch_skylake /sys/class/hwmon/hwmon4 = coretemp /sys/class/hwmon/hwmon5 = hp /sys/class/hwmon/hwmon6 = iwlwifi_1 /sys/class/hwmon/hwmon7 = nouveau /sys/class/hwmon/hwmon8 = hidpp_battery_0
I was too lazy for if_existing.
being lazy is an inspiration to looking for solutions.
And this is a very smart solution!
You have a "few" more than I do.
2024·08·27 @ 12:36:36 ~
$ for m in /sys/class/hwmon/* ; do echo -n “$m = ” ; cat $m/name ; done
“/sys/class/hwmon/hwmon0 = ”k10temp
“/sys/class/hwmon/hwmon1 = ”asus
“/sys/class/hwmon/hwmon2 = ”amdgpu
2024·08·27 @ 12:37:03 ~
$
and mine has " marks with it. hmmmmm
Better - removing spaces before and after the ;
2024·08·27 @ 12:41:44 ~
$ for m in /sys/class/hwmon/*;do echo -n "$m = ";cat $m/name;done
/sys/class/hwmon/hwmon0 = k10temp
/sys/class/hwmon/hwmon1 = asus
/sys/class/hwmon/hwmon2 = amdgpu
2024·08·27 @ 12:41:52 ~
$
27 Aug 2024 = old man learns something new.
Debian 12 Beardog, SoxDog and still a Conky 1.9er
Offline
Thank you, my friend.
27 Aug 2024 = old man learns something new.
We've been this far before, it's not 'old man', it's 'wise man'!
Big difference!
Last edited by unklar (2024-08-27 17:40:29)
Offline
Thank you, my friend.
Sector11 wrote:27 Aug 2024 = old man learns something new.
We've been this far before, it's not 'old man', it's 'wise man'!
Big difference!
True again. Then I am getting wiser, faster.
Debian 12 Beardog, SoxDog and still a Conky 1.9er
Offline
the eavesd Conky
![]()
(Feed)
Nice stuff. Some looks familiar.
Old times. Good times.
Miss them.
Debian 12 Beardog, SoxDog and still a Conky 1.9er
Offline
unklar wrote:the eavesd Conky
![]()
(Feed)
Nice stuff. Some looks familiar.
Old times. Good times.
Miss them.
That's right.
On the other hand, it has to be said that we no longer have time for this. Life, you know...
Offline
Yea, life hits hard as we get older.
But ±13 years of playing with conky and bending folding and mutilating conky and LUA code to make it do things it wasn't really designed to was such a rush.
We, or I at least, now leave that to others dedicated to the cause.
Some of the greats I've met along the way, including yourself unklar:
Kaivalagi (Mark Buck)
TeoBigusGeekus
MrPeachy
falldown
Londonali1010
Arpinux
Deegan
SearchOne
ElderV.LaCoste
Crinos512
arclance
ansem_of_nexus
loutch
and countless others!
Debian 12 Beardog, SoxDog and still a Conky 1.9er
Offline
Thank you for the flowers, my friend. But I think you're exaggerating a bit. I've never come close to your (and the others') class.
I think the Python guy is still missing... (I can't think of his name right now)
BTW, I just set up this Conky again on this xfce box, because I'm upset that the weather data with the scripts from @chupin or openweather for my location are always so far off and not consistent!
You see, there's still no getting around @TBG.
Last edited by unklar (2024-09-26 14:40:50)
Offline
conky V1.21.6
With this conky version there are a few changes under labwc 0.7.4.
The variable 'override' could now be changed back to 'normal'. This means that the conky appears on the desktop on which it is started. It can be moved again as usual with ALT+left-click/hold.
It works with "override"; "normal"; "panel". Desktop" and "dock" have no effect.
I also achieved no effect with "skip_taskbar,skip_pager,below,sticky".
@malm suggests the following code: https://labwc.github.io/integration.html#desktops
out_to_x = false,
out_to_wayland = true,
'false' means that the conky is not visible. With 'true' it looks good
If images/icons are to be displayed, I have found the variable "draw_blended" for display errors: https://conky.cc/config_settings#draw_blended
A few examples to help you understand:
without "blended", the error can look like this
When starting in the terminal, conky:
conky -c ~/.conky/.BL-Text-conkyrc &
[1] 4938
unklar@efi-sid:~$ conky: desktop window (0x4f0) is root window
conky: window type - normal
conky: drawing to created window (0x600002)
conky: drawing to double buffer
conky: forked to background, pid is 4939
conky: FOUND: console
conky: FOUND: ncurses
conky: FOUND: file
conky: FOUND: x11
conky: FOUND: wayland
conky: '(null)' wayland session running 'wlroots' desktop
In summary, I played with these settings:
out_to_x = true, --false,
out_to_wayland = true,
...
own_window_type = 'normal', --override, --panel,
own_window_hints = 'undecorated',
...
draw_blended = true, --or false
and, I had already emphasized that LUA does not work in Wayland
Last edited by unklar (2024-09-30 14:19:19)
Offline
@unklar
Absolutely there MANY that are missing from my list, I can't possibly remember them all.
You are not one of the missing, I have learned a lot from you.
By python guy you mean Kaivalagi of conkyForecast fame?
Then mobilediesel a bash script guy like Crinos512
and how could I not mention: wlourf another LUA genius.
TGB sill up and running here.
Debian 12 Beardog, SoxDog and still a Conky 1.9er
Offline
@unklar
Absolutely there MANY that are missing from my list, I can't possibly remember them all.
You are not one of the missing, I have learned a lot from you.By python guy you mean Kaivalagi of conkyForecast fame?
Then mobilediesel a bash script guy like Crinos512
and how could I not mention: wlourf another LUA genius.TGB sill up and running here.
No.
I know for sure he had a monkey/chimpanzee as his avatar...
Offline
No.
I know for sure he had a monkey/chimpanzee as his avatar...
OK, now that sounds familiar.
Debian 12 Beardog, SoxDog and still a Conky 1.9er
Offline
Top!
-----------------------
old school
Offline
I have a lot of old accuweather conkies.
This one has many improvements.
I'll try to remember some, but I'll probably skip something:
Non-working days (red)
Wind Gusts (<= 19 km/h green; 20-49 km/h orange; >= 50 km/h red + blink effect)
Wind Direction (variable position + CLM + No Wind instead of 0 km/h)
UV Index (colored green; yellow; red; magenta)
Current Conditions (all in one line - scroll effect)
alignment bottom_left
gap_x 0
gap_y 0
own_window yes
own_window_type normal
own_window_transparent no
own_window_colour 000014
own_window_argb_visual yes
own_window_argb_value 140
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
minimum_size 350 0
use_xft yes
double_buffer yes
default_color FF8080
color1 0098FF
color2 FEDF08
color3 00AD00
color4 0040FF
color5 orange
color6 magenta
color7 FF6060
text_buffer_size 3328
update_interval 1.0
imlib_cache_size 0
TEXT
${texeci 500 bash $HOME/Accuweather_conky_script/accuweather -f2015}${voffset 5}${font Open Sans:size=12}${color1} WEATHER${voffset 5}
${image $HOME/Accuweather_conky_script/forecast_2015/forecast_0.png -p 0,30 -s 167x100}${font Open Sans:size=11}${color3}${goto 170}${texeci 600 sed -n '4p' $HOME/Accuweather_conky_script/curr_cond|cut -c1-40 | sed -e 's/\b./\u\0/g' | sed 's/ / /g'}
${goto 170}${texeci 600 sed -n '4p' $HOME/Accuweather_conky_script/curr_cond|cut -c21-40}
${font Open Sans:size=22}${color2}${goto 170}${texeci 600 sed -n '2p' $HOME/Accuweather_conky_script/curr_cond}° ${color1}(${offset 2}${texeci 600 sed -n '3p' $HOME/Accuweather_conky_script/curr_cond}°${offset 2})
${voffset 10}${color1}\
${if_match "${texeci 600 sed -n '5p' $HOME/Accuweather_conky_script/curr_cond|awk '{print $0}' | awk '{print length($0)}'}" == "3"}${goto 175}\
${else}\
${if_match "${texeci 600 sed -n '5p' $HOME/Accuweather_conky_script/curr_cond|awk '{print $0}' | awk '{print length($0)}'}" == "2"}${goto 185}\
${else}\
${if_match "${texeci 600 sed -n '5p' $HOME/Accuweather_conky_script/curr_cond|awk '{print $0}' | awk '{print length($0)}'}" == "1"}${goto 195}\
${endif}${endif}${endif}\
${font Open Sans:size=10:italic}\
${texeci 600 sed -n '5p' $HOME/Accuweather_conky_script/curr_cond|awk '{print $1}'}${goto 280}\
${color 0040FF}${if_match "${texeci 600 sed -n '6p' $HOME/Accuweather_conky_script/curr_cond|awk '{print $1}'}" == "0"}No\
${else}\
${color2}${texeci 600 sed -n '6p' $HOME/Accuweather_conky_script/curr_cond|awk '{print $1}'} \
${if_match ${texeci 600 sed -n '17p' $HOME/Accuweather_conky_script/curr_cond|awk '{print $1}'}<=19}${color3} ( ${texeci 600 sed -n '17p' $HOME/Accuweather_conky_script/curr_cond|awk '{print $1}'} )\
${endif}\
${if_match ${texeci 600 sed -n '17p' $HOME/Accuweather_conky_script/curr_cond|awk '{print $1}'}>=20}\
${if_match ${texeci 600 sed -n '17p' $HOME/Accuweather_conky_script/curr_cond|awk '{print $1}'}<=49}${color5} ( ${texeci 600 sed -n '17p' $HOME/Accuweather_conky_script/curr_cond|awk '{print $1}'} )\
${endif}${endif}\
${if_match ${texeci 600 sed -n '17p' $HOME/Accuweather_conky_script/curr_cond|awk '{print $1}'}>=50}${blink ${color7} ( ${texeci 600 sed -n '17p' $HOME/Accuweather_conky_script/curr_cond|awk '{print $1}'} )}\
${else}${endif}${endif}
${goto 72}${font Open Sans:size=11}${color3}Now\
${font Open Sans:size=10:italic}${goto 280}\
${if_match "${texeci 600 sed -n '6p' $HOME/Accuweather_conky_script/curr_cond|awk '{print $1}'}" == "0"}${color4}Wind\
${else}\
${color 0040FF}${texeci 600 sed -n '6p' $HOME/Accuweather_conky_script/curr_cond|awk '{print $2}'}${endif}${voffset -15}\
${image $HOME/Accuweather_conky_script/forecast_2015/wind_0.png -p 195,100 -s 90x90}
${font Sans:size=9:italic}${goto 30}${scroll 42 6\
${color1}Humidity: ${color2}${texeci 600 sed -n '7p' $HOME/Accuweather_conky_script/curr_cond}\
${color1} Pressure: ${color2}${texeci 600 sed -n '8p' $HOME/Accuweather_conky_script/curr_cond | awk '{print substr($0,3)}'}${color}${offset 2}${texeci 600 sed -n '8p' $HOME/Accuweather_conky_script/curr_cond | awk '{print substr($1,1)}'}\
${color1} UV Index: ${if_match "${texeci 600 sed -n '9p' $HOME/Accuweather_conky_script/curr_cond | awk '{print $1}'}" == "-"}${color}${else}${color2}${endif}${texeci 600 sed -n '9p' $HOME/Accuweather_conky_script/curr_cond | awk '{print $1}'}${if_match "${texeci 600 sed -n '9p' $HOME/Accuweather_conky_script/curr_cond | awk '{for (i=2; i<NF; i++) printf $i " "; print $NF}'}" == "Low"}${color3} ${texeci 600 sed -n '9p' $HOME/Accuweather_conky_script/curr_cond | awk '{for (i=2; i<NF; i++) printf $i " "; print $NF}'}\
${else}${if_match "${texeci 600 sed -n '9p' $HOME/Accuweather_conky_script/curr_cond | awk '{for (i=2; i<NF; i++) printf $i " "; print $NF}'}" == "Moderate"}${color2} ${texeci 600 sed -n '9p' $HOME/Accuweather_conky_script/curr_cond | awk '{for (i=2; i<NF; i++) printf $i " "; print $NF}'}\
${else}${if_match "${texeci 600 sed -n '9p' $HOME/Accuweather_conky_script/curr_cond | awk '{for (i=2; i<NF; i++) printf $i " "; print $NF}'}" == "High"}${color5} ${texeci 600 sed -n '9p' $HOME/Accuweather_conky_script/curr_cond | awk '{for (i=2; i<NF; i++) printf $i " "; print $NF}'}\
${else}${if_match "${texeci 600 sed -n '9p' $HOME/Accuweather_conky_script/curr_cond | awk '{for (i=2; i<NF; i++) printf $i " "; print $NF}'}" == "Very High"}${color} ${texeci 600 sed -n '9p' $HOME/Accuweather_conky_script/curr_cond | awk '{for (i=2; i<NF; i++) printf $i " "; print $NF}'}\
${else}${if_match "${texeci 600 sed -n '9p' $HOME/Accuweather_conky_script/curr_cond | awk '{for (i=2; i<NF; i++) printf $i " "; print $NF}'}" == "Extreme"}${color6} ${texeci 600 sed -n '9p' $HOME/Accuweather_conky_script/curr_cond | awk '{for (i=2; i<NF; i++) printf $i " "; print $NF}'}\
${else}${endif}${endif}${endif}${endif}${endif}\
${color1} Dew Point: ${color2}${texeci 600 sed -n '12p' $HOME/Accuweather_conky_script/curr_cond}°\
${color1} Cloud Cover: ${color2}${texeci 600 sed -n '10p' $HOME/Accuweather_conky_script/curr_cond}\
${color1} Visibility: ${color2}${texeci 600 sed -n '13p' $HOME/Accuweather_conky_script/curr_cond}\
${color1} Source: ${color}☀${color5} AccuWeather}
${goto 20}${font Open Sans:size=9}${if_match "${texeci 600 sed -n '1p' $HOME/Accuweather_conky_script/daily_forecast|tr a-z A-Z}" == "SATURDAY"}${color}SATURDAY${else}\
${if_match "${texeci 600 sed -n '1p' $HOME/Accuweather_conky_script/daily_forecast|tr a-z A-Z}" == "SUNDAY"}${color}SUNDAY${else}${color1}${texeci 600 sed -n '1p' $HOME/Accuweather_conky_script/daily_forecast|tr a-z A-Z}${endif}${endif}${color1}\
${goto 130}${if_match "${texeci 600 sed -n '8p' $HOME/Accuweather_conky_script/daily_forecast|tr a-z A-Z}" == "SATURDAY"}${color}SATURDAY${else}\
${if_match "${texeci 600 sed -n '8p' $HOME/Accuweather_conky_script/daily_forecast|tr a-z A-Z}" == "SUNDAY"}${color}SUNDAY${else}${color1}${texeci 600 sed -n '8p' $HOME/Accuweather_conky_script/daily_forecast|tr a-z A-Z}${endif}${endif}${color1}\
${goto 240}${if_match "${texeci 600 sed -n '15p' $HOME/Accuweather_conky_script/daily_forecast|tr a-z A-Z}" == "SATURDAY"}${color}SATURDAY${else}\
${if_match "${texeci 600 sed -n '15p' $HOME/Accuweather_conky_script/daily_forecast|tr a-z A-Z}" == "SUNDAY"}${color}SUNDAY${else}${color1}${texeci 600 sed -n '15p' $HOME/Accuweather_conky_script/daily_forecast|tr a-z A-Z}${endif}${endif}${color1}\
${image $HOME/Accuweather_conky_script/forecast_2015/forecast_1.png -p 2,230 -s 90x54}\
${image $HOME/Accuweather_conky_script/forecast_2015/forecast_2.png -p 112,230 -s 90x54}\
${image $HOME/Accuweather_conky_script/forecast_2015/forecast_3.png -p 222,230 -s 90x54}
${voffset -10}${goto 100}${color2}${texeci 600 sed -n '4p' $HOME/Accuweather_conky_script/daily_forecast}°${goto 210}${texeci 600 sed -n '11p' $HOME/Accuweather_conky_script/daily_forecast}°${goto 320}${texeci 600 sed -n '18p' $HOME/Accuweather_conky_script/daily_forecast}°
${goto 100}${color4}/${texeci 600 sed -n '5p' $HOME/Accuweather_conky_script/daily_forecast}°${goto 210}/${texeci 600 sed -n '12p' $HOME/Accuweather_conky_script/daily_forecast}°${goto 320}/${texeci 600 sed -n '19p' $HOME/Accuweather_conky_script/daily_forecast}°
${voffset 12}${goto 15}${font Sans:size=8}${color3}${texeci 600 sed -n '6p' $HOME/Accuweather_conky_script/daily_forecast|cut -c1-17}${goto 125}${texeci 600 sed -n '13p' $HOME/Accuweather_conky_script/daily_forecast|cut -c1-17}${goto 235}${texeci 600 sed -n '20p' $HOME/Accuweather_conky_script/daily_forecast|cut -c1-17}
${goto 15}${texeci 600 sed -n '6p' $HOME/Accuweather_conky_script/daily_forecast|cut -c18-34}${goto 125}${texeci 600 sed -n '13p' $HOME/Accuweather_conky_script/daily_forecast|cut -c18-34}${goto 235}${texeci 600 sed -n '20p' $HOME/Accuweather_conky_script/daily_forecast|cut -c18-34}
${goto 40}${color4}${alignc}${texeci 3600 echo "***************"}
${goto 20}${font Open Sans:size=8}${if_match "${texeci 600 sed -n '22p' $HOME/Accuweather_conky_script/daily_forecast|tr a-z A-Z}" == "SATURDAY"}${color}SATURDAY${else}\
${if_match "${texeci 600 sed -n '22p' $HOME/Accuweather_conky_script/daily_forecast|tr a-z A-Z}" == "SUNDAY"}${color}SUNDAY${else}${color1}${texeci 600 sed -n '22p' $HOME/Accuweather_conky_script/daily_forecast|tr a-z A-Z}${endif}${endif}${color1}\
${goto 100}${if_match "${texeci 600 sed -n '29p' $HOME/Accuweather_conky_script/daily_forecast|tr a-z A-Z}" == "SATURDAY"}${color}SATURDAY${else}\
${if_match "${texeci 600 sed -n '29p' $HOME/Accuweather_conky_script/daily_forecast|tr a-z A-Z}" == "SUNDAY"}${color}SUNDAY${else}${color1}${texeci 600 sed -n '29p' $HOME/Accuweather_conky_script/daily_forecast|tr a-z A-Z}${endif}${endif}${color1}\
${goto 180}${if_match "${texeci 600 sed -n '36p' $HOME/Accuweather_conky_script/daily_forecast|tr a-z A-Z}" == "SATURDAY"}${color}SATURDAY${else}\
${if_match "${texeci 600 sed -n '36p' $HOME/Accuweather_conky_script/daily_forecast|tr a-z A-Z}" == "SUNDAY"}${color}SUNDAY${else}${color1}${texeci 600 sed -n '36p' $HOME/Accuweather_conky_script/daily_forecast|tr a-z A-Z}${endif}${endif}${color1}\
${goto 260}${if_match "${texeci 600 sed -n '43p' $HOME/Accuweather_conky_script/daily_forecast|tr a-z A-Z}" == "SATURDAY"}${color}SATURDAY${else}\
${if_match "${texeci 600 sed -n '43p' $HOME/Accuweather_conky_script/daily_forecast|tr a-z A-Z}" == "SUNDAY"}${color}SUNDAY${else}${color1}${texeci 600 sed -n '43p' $HOME/Accuweather_conky_script/daily_forecast|tr a-z A-Z}${endif}${endif}${color1}\
${voffset 5}${font Open Sans:size=9}${goto 80}${color2}${texeci 600 sed -n '25p' $HOME/Accuweather_conky_script/daily_forecast}°${goto 160}${texeci 600 sed -n '32p' $HOME/Accuweather_conky_script/daily_forecast}°${goto 240}${texeci 600 sed -n '39p' $HOME/Accuweather_conky_script/daily_forecast}°${goto 320}${texeci 600 sed -n '46p' $HOME/Accuweather_conky_script/daily_forecast}°
${goto 80}${color 0040FF}/${texeci 600 sed -n '26p' $HOME/Accuweather_conky_script/daily_forecast}°${goto 160}/${texeci 600 sed -n '33p' $HOME/Accuweather_conky_script/daily_forecast}°${goto 240}/${texeci 600 sed -n '40p' $HOME/Accuweather_conky_script/daily_forecast}°${goto 320}/${texeci 600 sed -n '47p' $HOME/Accuweather_conky_script/daily_forecast}°${voffset 10}\
${image $HOME/Accuweather_conky_script/forecast_2015/forecast_4.png -p 15,375 -s 60x36}\
${image $HOME/Accuweather_conky_script/forecast_2015/forecast_5.png -p 95,375 -s 60x36}\
${image $HOME/Accuweather_conky_script/forecast_2015/forecast_6.png -p 175,375 -s 60x36}\
${image $HOME/Accuweather_conky_script/forecast_2015/forecast_7.png -p 255,375 -s 60x36}
Enjoy!
Last edited by marens (2024-10-30 03:14:41)
If people would know how little brain is ruling the world, they would die of fear.
Offline