You are not logged in.

#401 2015-12-21 14:25:44

unklar
Back to the roots 1.9
From: #! BL
Registered: 2015-10-31
Posts: 2,648

Re: Conky weather+moon scripts (Accuw/WUndergr/NWS/MoonGiant)

Sector11 wrote:

@unklar
in 2b do you have:
hemisphere=n
or
hemisphere=s

hemisphere=n

and when the script
"Waxing Gibbous" expected

delivered in German, however, will receive:
"Zweites Viertel"

see above   hmm

Offline

#402 2015-12-21 16:08:01

unklar
Back to the roots 1.9
From: #! BL
Registered: 2015-10-31
Posts: 2,648

Re: Conky weather+moon scripts (Accuw/WUndergr/NWS/MoonGiant)

unklar wrote:

and when the script
"Waxing Gibbous" expected
delivered in German, however, will receive:
"Zweites Viertel"
see above   hmm

BINGO!
edrdwwpL

conky -c ~/2b_Wunderground_API/.conkyrc3 &                      
[1] 4037
[unklar@francoPC ~]$ conky: desktop window (2800021) is subwindow of root window (4c8)
conky: window type - normal
conky: drawing to created window (0x1200002)
conky: drawing to double buffer
conky: forked to background, pid is 4038

wget: Kein Prozess gefunden
--2015-12-21 16:46:20--  http://api.wunderground.com/api/xxxkeyxxx/conditions/forecast10day/astronomy/hourly/satellite/alerts/lang:DL/q/zmw:00000.27.10577.json
Auflösen des Hostnamens »api.wunderground.com (api.wunderground.com)« … 104.85.248.66
Verbindungsaufbau zu api.wunderground.com (api.wunderground.com)|104.85.248.66|:80 … verbunden.
HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK
Länge: nicht spezifiziert [application/json]
Wird in »»/home/unklar/2b_Wunderground_API/raw_data«« gespeichert.

/home/unklar/2b_Wunder     [ <=>                      ]  68,65K  --.-KB/s    in 0,06s   

2015-12-21 16:46:20 (1,14 MB/s) - »/home/unklar/2b_Wunderground_API/raw_data« gespeichert [70295]
Ausschnitt 2b > Moon_phase
....
#Forecast feature: Moon_Sun
sed -n '/"moon_phase": {/,/"sun_phase": {/p' $HOME/2b_Wunderground_API/raw_data > $HOME/2b_Wunderground_API/Moon_Sun
sed -i 's/^[ \t]*"//g' $HOME/2b_Wunderground_API/Moon_Sun
sed -i '/moon_phase\|^[ \t]*},$\|sun_phase\|^[ \t]*}$/d' $HOME/2b_Wunderground_API/Moon_Sun
sed -i -e 's/":"/\n/g' -e 's/".*$//g' $HOME/2b_Wunderground_API/Moon_Sun
moon_phase=$(sed -n 6p $HOME/2b_Wunderground_API/Moon_Sun)
if [[ $moon_phase == "Waning Crescent" ]]; then
	cp $HOME/2b_Wunderground_API/moonicons/$hemisphere"21.png" $HOME/2b_Wunderground_API/Moon_phase.png
elif [[ $moon_phase == "Waxing Crescent" ]]; then
	cp $HOME/2b_Wunderground_API/moonicons/$hemisphere"04.png" $HOME/2b_Wunderground_API/Moon_phase.png
elif [[ $moon_phase == "Waning Gibbous" ]]; then
	cp $HOME/2b_Wunderground_API/moonicons/$hemisphere"17.png" $HOME/2b_Wunderground_API/Moon_phase.png
elif [[ $moon_phase == "Waxing Gibbous" ]]; then
	cp $HOME/2b_Wunderground_API/moonicons/$hemisphere"09.png" $HOME/2b_Wunderground_API/Moon_phase.png
elif [[ $moon_phase == "First Quarter" ]]; then
	cp $HOME/2b_Wunderground_API/moonicons/$hemisphere"07.png" $HOME/2b_Wunderground_API/Moon_phase.png
elif [[ $moon_phase == "Last Quarter" ]]; then
	cp $HOME/2b_Wunderground_API/moonicons/$hemisphere"19.png" $HOME/2b_Wunderground_API/Moon_phase.png
elif [[ $moon_phase == "New Moon" ]]; then
	cp $HOME/2b_Wunderground_API/moonicons/$hemisphere"24.png" $HOME/2b_Wunderground_API/Moon_phase.png
elif [[ $moon_phase == "Full Moon" ]]; then
	cp $HOME/2b_Wunderground_API/moonicons/$hemisphere"13.png" $HOME/2b_Wunderground_API/Moon_phase.png
fi

killall -CONT conky
==============================================================
geändert in

#Forecast feature: Moon_Sun
sed -n '/"moon_phase": {/,/"sun_phase": {/p' $HOME/2b_Wunderground_API/raw_data > $HOME/2b_Wunderground_API/Moon_Sun
sed -i 's/^[ \t]*"//g' $HOME/2b_Wunderground_API/Moon_Sun
sed -i '/moon_phase\|^[ \t]*},$\|sun_phase\|^[ \t]*}$/d' $HOME/2b_Wunderground_API/Moon_Sun
sed -i -e 's/":"/\n/g' -e 's/".*$//g' $HOME/2b_Wunderground_API/Moon_Sun
moon_phase=$(sed -n 6p $HOME/2b_Wunderground_API/Moon_Sun)
if [[ $moon_phase == "Abnehmender Halbmond" ]]; then
	cp $HOME/2b_Wunderground_API/moonicons/$hemisphere"21.png" $HOME/2b_Wunderground_API/Moon_phase.png
elif [[ $moon_phase == "Zunehmender Halbmond" ]]; then
	cp $HOME/2b_Wunderground_API/moonicons/$hemisphere"04.png" $HOME/2b_Wunderground_API/Moon_phase.png
elif [[ $moon_phase == "Drittes Viertel" ]]; then
	cp $HOME/2b_Wunderground_API/moonicons/$hemisphere"17.png" $HOME/2b_Wunderground_API/Moon_phase.png
elif [[ $moon_phase == "Zweites Viertel" ]]; then
	cp $HOME/2b_Wunderground_API/moonicons/$hemisphere"09.png" $HOME/2b_Wunderground_API/Moon_phase.png
elif [[ $moon_phase == "Erstes Viertel" ]]; then
	cp $HOME/2b_Wunderground_API/moonicons/$hemisphere"07.png" $HOME/2b_Wunderground_API/Moon_phase.png
elif [[ $moon_phase == "Letztes Viertel" ]]; then
	cp $HOME/2b_Wunderground_API/moonicons/$hemisphere"19.png" $HOME/2b_Wunderground_API/Moon_phase.png
elif [[ $moon_phase == "Neumond" ]]; then
	cp $HOME/2b_Wunderground_API/moonicons/$hemisphere"24.png" $HOME/2b_Wunderground_API/Moon_phase.png
elif [[ $moon_phase == "Vollmond" ]]; then
	cp $HOME/2b_Wunderground_API/moonicons/$hemisphere"13.png" $HOME/2b_Wunderground_API/Moon_phase.png
fi

killall -CONT conky

and "Moon_phase.png" is created  big_smile  big_smile

Last edited by unklar (2015-12-21 16:10:51)

Offline

#403 2015-12-21 16:26:39

Sector11
Mod Squid Tpyo Knig
From: Upstairs
Registered: 2015-08-20
Posts: 8,011

Re: Conky weather+moon scripts (Accuw/WUndergr/NWS/MoonGiant)

OH - Now I get it ... talk about  feeling :8  :8

Let's try something ....

{ scrap all that }

... and test it   O:)

SECOND EDIT:  Am I going blind?  I have no idea what you did.  ? 8) ?


Debian 12 Beardog, SoxDog and still a Conky 1.9er

Offline

#404 2015-12-21 16:31:47

TeoBigusGeekus
BL DieHard
From: /Deutschland/Frankfurt_am_Main
Registered: 2015-10-04
Posts: 1,486

Re: Conky weather+moon scripts (Accuw/WUndergr/NWS/MoonGiant)

Major screwup in the 2b script (southern hemisphere images), stand by...


Please make Autocad Civil 3D and Archicad work on Linux!
Please make Autocad Civil 3D and Archicad work on Linux!
Please make Autocad Civil 3D and Archicad work on Linux!
Please make Autocad Civil 3D and Archicad work on Linux!

Offline

#405 2015-12-21 16:37:26

Sector11
Mod Squid Tpyo Knig
From: Upstairs
Registered: 2015-08-20
Posts: 8,011

Re: Conky weather+moon scripts (Accuw/WUndergr/NWS/MoonGiant)

^  YUP!  And I blame it on that Sector11 guy.

He can conky OK, but with other stuff ... "Look Out!"  lol  lol


Debian 12 Beardog, SoxDog and still a Conky 1.9er

Offline

#406 2015-12-21 16:43:24

TeoBigusGeekus
BL DieHard
From: /Deutschland/Frankfurt_am_Main
Registered: 2015-10-04
Posts: 1,486

Re: Conky weather+moon scripts (Accuw/WUndergr/NWS/MoonGiant)

ANNOUNCEMENT
Major blunders corrected in the 2b script: southern hemisphere moon images, falldown's background image would vanish, etc. The configuration files (.conkyrc1, .conkyrc2, .conkyrc3, .conkyrc4) have been converted to the new lua syntax.
Script rebundled.


Please make Autocad Civil 3D and Archicad work on Linux!
Please make Autocad Civil 3D and Archicad work on Linux!
Please make Autocad Civil 3D and Archicad work on Linux!
Please make Autocad Civil 3D and Archicad work on Linux!

Offline

#407 2015-12-21 16:44:29

TeoBigusGeekus
BL DieHard
From: /Deutschland/Frankfurt_am_Main
Registered: 2015-10-04
Posts: 1,486

Re: Conky weather+moon scripts (Accuw/WUndergr/NWS/MoonGiant)

Sector11 wrote:

^  YUP!  And I blame it on that Sector11 guy.

He can conky OK, but with other stuff ... "Look Out!"  lol  lol

Nevermind S11, we only have one brain to use 24/7.


Please make Autocad Civil 3D and Archicad work on Linux!
Please make Autocad Civil 3D and Archicad work on Linux!
Please make Autocad Civil 3D and Archicad work on Linux!
Please make Autocad Civil 3D and Archicad work on Linux!

Offline

#408 2015-12-21 17:14:15

fvirgola80
Member
From: Italy / Rome
Registered: 2015-10-08
Posts: 262

Re: Conky weather+moon scripts (Accuw/WUndergr/NWS/MoonGiant)

Hello Guys I tried onky but I get this error

fvirgola80@fringe-PC:~$ conky -c /home/fvirgola80/2b_Wunderground_API/.conkyrc1
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 1: no such configuration: 'conky.config'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 3: config file error
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 5: config file error
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 5: config file error
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 11: no such configuration: 'minimum_width'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 12: config file error
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 18: config file error
Conky: use_spacer should have an argument of left, right, or none.  '= 'none',' seems to be some form of 'false', so defaulting to none.
Conky: text_buffer_size must be >=256 bytes
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 66: no such configuration: '};'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 68: no such configuration: 'conky.text'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 69: no such configuration: '${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 70: no such configuration: '${image'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 71: no such configuration: '${alignc}${color1}${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 72: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 73: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 74: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 75: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 76: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 77: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 78: no such configuration: '${color5}${alignc}${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 79: no such configuration: 'Visibility'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 80: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 81: no such configuration: 'Wind'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 82: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 83: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 84: no such configuration: 'Pressure'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 85: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 86: no such configuration: 'Dew'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 87: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 88: no such configuration: 'Sunrise:'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 89: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 90: no such configuration: '${alignc}${color4}${membar'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 91: no such configuration: '${color9}${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 92: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 93: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 94: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 95: no such configuration: '${image'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 96: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 97: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 98: no such configuration: '${color7}${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 99: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 100: no such configuration: '${color5}${alignc}${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 101: no such configuration: '${alignc}${color4}${membar'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 102: no such configuration: '${color9}${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 103: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 104: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 105: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 106: no such configuration: '${image'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 107: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 108: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 109: no such configuration: '${color7}${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 110: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 111: no such configuration: '${color5}${alignc}${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 112: no such configuration: '${alignc}${color4}${membar'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 113: no such configuration: '${color9}${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 114: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 115: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 116: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 117: no such configuration: '${image'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 118: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 119: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 120: no such configuration: '${color7}${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 121: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 122: no such configuration: '${color5}${alignc}${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 123: no such configuration: '${alignc}${color4}${membar'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 124: no such configuration: '${color9}${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 125: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 126: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 127: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 128: no such configuration: '${image'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 129: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 130: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 131: no such configuration: '${color7}${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 132: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 133: no such configuration: '${color5}${alignc}${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 134: no such configuration: '${alignc}${color4}${membar'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 135: no such configuration: '${color9}${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 136: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 137: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 138: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 139: no such configuration: '${image'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 140: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 141: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 142: no such configuration: '${color7}${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 143: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 144: no such configuration: '${color5}${alignc}${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 145: no such configuration: '${alignc}${color4}${membar'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 146: no such configuration: '${color9}${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 147: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 148: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 149: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 150: no such configuration: '${image'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 151: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 152: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 153: no such configuration: '${color7}${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 154: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 155: no such configuration: '${color5}${alignc}${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 156: no such configuration: '${alignc}${color4}${membar'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 157: no such configuration: '${color9}${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 158: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 159: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 160: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 161: no such configuration: '${image'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 162: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 163: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 164: no such configuration: '${color7}${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 165: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 166: no such configuration: '${color5}${alignc}${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 167: no such configuration: '${alignc}${color4}${membar'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 168: no such configuration: '${color9}${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 169: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 170: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 171: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 172: no such configuration: '${image'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 173: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 174: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 175: no such configuration: '${color7}${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 176: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 177: no such configuration: '${color5}${alignc}${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 178: no such configuration: '${alignc}${color4}${membar'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 179: no such configuration: '${color9}${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 180: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 181: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 182: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 183: no such configuration: '${image'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 184: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 185: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 186: no such configuration: '${color7}${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 187: no such configuration: '${goto'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 188: no such configuration: '${color5}${alignc}${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 189: no such configuration: '${alignc}${membar'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 190: no such configuration: '${alignc}${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 191: no such configuration: '${alignc}${execi'
Conky: /home/fvirgola80/2b_Wunderground_API/.conkyrc1: 192: no such configuration: ']];'
Conky: missing text block in configuration; exiting
***** Imlib2 Developer Warning ***** :
	This program is calling the Imlib call:

	imlib_context_free();

	With the parameter:

	context

	being NULL. Please fix your program.

Help.. 8.(


Nothing happens by chance

Offline

#409 2015-12-21 17:19:10

TeoBigusGeekus
BL DieHard
From: /Deutschland/Frankfurt_am_Main
Registered: 2015-10-04
Posts: 1,486

Re: Conky weather+moon scripts (Accuw/WUndergr/NWS/MoonGiant)

You should upgrade to conky 1.10 fvirgola80. I've changed the 4 conkyrcs to the new lua syntax.


Please make Autocad Civil 3D and Archicad work on Linux!
Please make Autocad Civil 3D and Archicad work on Linux!
Please make Autocad Civil 3D and Archicad work on Linux!
Please make Autocad Civil 3D and Archicad work on Linux!

Offline

#410 2015-12-21 17:24:07

Inodoro Pereyra
Member
Registered: 2015-11-04
Posts: 123

Re: Conky weather+moon scripts (Accuw/WUndergr/NWS/MoonGiant)

Ok, this is what I did so far:

21_12_2015_14_13_scrot.jpg

And yes, the moon images are inverted. Guess I'm gonna have to download the new script...

Thank you Teo and S11, as usual, for the amazing work.  cool


Imagination is intelligence having fun. (Albert Einstein)
The thing about the Internet is you can create a phrase, and make up its author, and everybody will fall for it. (Aristotle)

Offline

#411 2015-12-21 20:21:47

Sector11
Mod Squid Tpyo Knig
From: Upstairs
Registered: 2015-08-20
Posts: 8,011

Re: Conky weather+moon scripts (Accuw/WUndergr/NWS/MoonGiant)

fvirgola80 wrote:

Hello Guys I tried conky but I get this error

Help.. 8.(

Yea ... go back in the thread - Teo posted a conky v1.90 version of that as well.

TeoBigusGeekus wrote:

You should upgrade to conky 1.10 fvirgola80. I've changed the 4 conkyrcs to the new lua syntax.

Nooooo he just installed Bunsen - it comes with v1.9.0.  smile


Debian 12 Beardog, SoxDog and still a Conky 1.9er

Offline

#412 2015-12-21 20:29:45

Sector11
Mod Squid Tpyo Knig
From: Upstairs
Registered: 2015-08-20
Posts: 8,011

Re: Conky weather+moon scripts (Accuw/WUndergr/NWS/MoonGiant)

Inodoro Pereyra wrote:

Ok, this is what I did so far:

Thank you Teo and S11, as usual, for the amazing work.  cool

NICE!  I hate red but NICE anyway.

And if I may speak for Teo: De nada! O:) ]:D

You me talk .... compra/venta stuff ...
I just have exchange rates: 2015_12_21_17_26_05_Scrot11.png
Now that "Dolar Blue" is no more!


Debian 12 Beardog, SoxDog and still a Conky 1.9er

Offline

#413 2015-12-21 20:39:25

Sector11
Mod Squid Tpyo Knig
From: Upstairs
Registered: 2015-08-20
Posts: 8,011

Re: Conky weather+moon scripts (Accuw/WUndergr/NWS/MoonGiant)

TeoBigusGeekus wrote:

Nevermind S11, we only have one brain to use 24/7.

See that's the problem, I want it Mondays, Wednesdays and Fridays but noooooooooooo you gotta keep the one brain seven days a week!
haha_sm.pngWe need to share it!  victory_sm.png


Debian 12 Beardog, SoxDog and still a Conky 1.9er

Offline

#414 2015-12-21 20:39:50

Inodoro Pereyra
Member
Registered: 2015-11-04
Posts: 123

Re: Conky weather+moon scripts (Accuw/WUndergr/NWS/MoonGiant)

Sector11 wrote:

You me talk .... compra/venta stuff ...

Me iz lis'ning... tongue cool

Sector11 wrote:

Now that "Dolar Blue" is no more!

That's why I made it red now. Blue seems so... last week... ]:D


Imagination is intelligence having fun. (Albert Einstein)
The thing about the Internet is you can create a phrase, and make up its author, and everybody will fall for it. (Aristotle)

Offline

#415 2015-12-21 20:43:37

Sector11
Mod Squid Tpyo Knig
From: Upstairs
Registered: 2015-08-20
Posts: 8,011

Re: Conky weather+moon scripts (Accuw/WUndergr/NWS/MoonGiant)

Inodoro Pereyra wrote:

That's why I made it red now. Blue seems so... last week... ]:D

PM - this isn't weather stuff.


Debian 12 Beardog, SoxDog and still a Conky 1.9er

Offline

#416 2015-12-22 08:50:14

fvirgola80
Member
From: Italy / Rome
Registered: 2015-10-08
Posts: 262

Re: Conky weather+moon scripts (Accuw/WUndergr/NWS/MoonGiant)

Sector11 wrote:
fvirgola80 wrote:

Hello Guys I tried conky but I get this error

Help.. 8.(

Yea ... go back in the thread - Teo posted a conky v1.90 version of that as well.

TeoBigusGeekus wrote:

You should upgrade to conky 1.10 fvirgola80. I've changed the 4 conkyrcs to the new lua syntax.

Nooooo he just installed Bunsen - it comes with v1.90.  smile

Thank you guys :8


Nothing happens by chance

Offline

#417 2015-12-22 09:34:34

TeoBigusGeekus
BL DieHard
From: /Deutschland/Frankfurt_am_Main
Registered: 2015-10-04
Posts: 1,486

Re: Conky weather+moon scripts (Accuw/WUndergr/NWS/MoonGiant)

Isn't there a way to install the latest conky in BL?


Please make Autocad Civil 3D and Archicad work on Linux!
Please make Autocad Civil 3D and Archicad work on Linux!
Please make Autocad Civil 3D and Archicad work on Linux!
Please make Autocad Civil 3D and Archicad work on Linux!

Offline

#418 2015-12-22 09:52:11

tknomanzr
BL Die Hard
From: Around the Bend
Registered: 2015-09-29
Posts: 1,057

Re: Conky weather+moon scripts (Accuw/WUndergr/NWS/MoonGiant)

You could backport it.

Offline

#419 2015-12-22 09:53:36

pvsage
Internal Affairs
Registered: 2015-09-29
Posts: 1,433

Re: Conky weather+moon scripts (Accuw/WUndergr/NWS/MoonGiant)

@Sector11:  I think you meant 1.9?  1.90 would be 81 point releases newer than that.  (Decimals do not work the same as in math.)

@TeoBigusBeekus:  1.10 is in jessie-backports.  Add repo, $(apt-get -t {repo} {package}), the usual way.  Anything newer you'd need to download source and backport yourself, as tknomanzr suggested.

Last edited by pvsage (2015-12-22 09:55:13)


Be excellent to each other, and...party on, dudes!
BunsenLabs Forum Rules
Tending and defending the Flame since 2009

Offline

#420 2015-12-22 10:00:48

fvirgola80
Member
From: Italy / Rome
Registered: 2015-10-08
Posts: 262

Re: Conky weather+moon scripts (Accuw/WUndergr/NWS/MoonGiant)


Nothing happens by chance

Offline

Board footer

Powered by FluxBB