You are not logged in.

#1701 2017-07-04 10:18:45

ragamatrix
Member
Registered: 2015-10-04
Posts: 427

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

Thanks for your help, I tryed what you wrote but it make the moon script failed, still have the wget logs with that inside:

--2017-07-04 12:16:36--  http://www.accuweather.com/en/ch/horgen/316407/current-weather/316407
Résolution de www.accuweather.com (www.accuweather.com)… 2.20.19.182
Connexion à www.accuweather.com (www.accuweather.com)|2.20.19.182|:80… connecté.
requête HTTP transmise, en attente de la réponse… 200 OK
Taille : 108671 (106K) [text/html]
Sauvegarde en : « /home/raphix/1_accuweather/curr_cond_raw »


/home/raphix/1_accuweather/curr_con   0%[                                                                  ]       0  --.-KB/s               
/home/raphix/1_accuweather/curr_con 100%[=================================================================>] 106.12K  --.-KB/s    ds 0.06s   

2017-07-04 12:16:37 (1.72 MB/s) — « /home/raphix/1_accuweather/curr_cond_raw » sauvegardé [108671/108671]

Offline

#1702 2017-07-04 13:15:00

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

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

Try one of these in the 4_moon script:

wget -o /dev/null -O $HOME/4_Moon/raw "http://www.moongiant.com/phase/today"
wget -q -O $HOME/4_Moon/raw "http://www.moongiant.com/phase/today"

Debian 12 Beardog, SoxDog and still a Conky 1.9er

Offline

#1703 2017-07-04 19:38:02

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

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

Alternatively, you could integrate the

rm wget-log*

in the script itself.


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

#1704 2017-07-04 20:22:14

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

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

I thought of that, but it hit me , created the log then delete it.  Wouldn't just not creating it be the obvious choice?

-q - no log - but no terminal output at all

-o /dev/null - no log but terminal output??


Debian 12 Beardog, SoxDog and still a Conky 1.9er

Offline

#1705 2017-07-04 21:00: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)

Yeah, but he says that it made the script fail and the log files are still there.
The best solution would be yours, but in case it doesn't work maybe he could just delete the files and get over it.
I still haven't figured out why the log files appear randomly when using wget. I haven't searched much, or at all, agreed, but still, it can be bothering.
Maybe it's time for some googling...


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

#1706 2017-07-04 21:42:34

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

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

I just went startpaging - I don't do google.  And I found this:

http://geektnt.com/how-to-stop-wget-cro … ctory.html

How to stop Wget Cron jobs creating log files in home directory?

If you’re using /usr/bin/wget to run your Cronjobs you might notice that every time that cron runs – wget will also creates a log file and will places in your home directory. If you run cron too often (every few minutes) it can add up very quickly and pretty soon you’ll end up with thousands of useless (junk) log files in your home directory. Also your disk space could get consumed especially if you’re on shared hosting or have limited amounts of disk space available. We don’t want anything of that.

Solution is pretty simple actually. All you need to do is add an extra parameter -O /dev/null

So your wget command would look something like this:

/us/bin/wget -O /dev/null http://www.script.com/script.php

This will tell to save output to /dev/null – meaning not to save it at all..
It’s as simple as that.

And this GEM is a keeper:
https://unix.stackexchange.com/question … ut-logging

no, --quiet will not guarantee no logs.

from wget 1.13 ChangeLog:

    2008-04-22 Steven Schubiger

       * http.c (print_response_line): Changed to make responses always
       be logged, even in --quiet mode, if --server-response was
       specified. This is to bring http.c's handling of the situation
       in line with ftp.c's.

Or in other very simple, very plain, Trumpisim words:  - q or --quite IS A LIE!  IT'S A LIE I TELL YA! Millions of people won't say that but I will, "IT'S A LIE!"

{sweating profusely} Damn, that was scary!    O:)


Debian 12 Beardog, SoxDog and still a Conky 1.9er

Offline

#1707 2017-07-04 21:57:07

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

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

Cool, thanks for the info S11, I'm gonna play with it tomorrow (or the day after tongue).
Cheers!


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

#1708 2017-07-04 22:07:14

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

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

OK, back on topic, almost, close but no cigar.

It is weather. - It is Teo's 1_accuweather scriipt. - This thread is about Teo's weather scripts.

SOOOOOOOOOOOOOOOOOO 1_accuweather in a terminal:
2017-07-04_185057_Scrot11.th.jpg
The bash script:

#!/bin/bash
# --- original ---
# 4 Day Weather forecast script for Boardman, OH
# Written by:  Habitual (JJ)
# 11.01.2010 12:10:07
# For conkyForecast by: Kaivalagi
# --- Edited by Sector11 ---
# 7 Day Forecast
# 13 Jan 2013 14:08 UTC
# For conkyForecast by: Kaivalagi

# Re-edited:
# Mon 09 Jan 2017
# For Teo's Accuweather Weather script
### Run Teos script to refresh the databases
### Change the "wget" commands to "wget -q" in 1_accuweather
~/1_accuweather/1_accuweather -f2016 2>&1 >/dev/null

# Clear the screen
tput clear
#tput bold			### for bold text
#tput dim			### for dim text
#tput sgr0          ### remove formatting

# Current (1st Group LEFT)
tput cup 1 1;tput setaf 9
echo "- Buenos Aries, Argentina -"
tput cup 1 35;tput setaf 9
echo "- Accuweather -"
tput cup 2 1;tput setaf 9
echo "Currently"
tput cup 2 11;tput setaf 3
echo `sed -n '2p' ~/1_accuweather/curr_cond`"°"
tput cup 2 15;tput setaf 9
echo " for ±"
tput cup 2 21;tput setaf 3
echo `sed -n '3p' ~/1_accuweather/curr_cond`"°"
tput cup 3 1;tput setaf 2
echo `sed -n '4p' ~/1_accuweather/curr_cond`
tput cup 4 1;tput setaf 3
echo "Bar"
tput cup 4 5;tput setaf 9
echo `sed -n '8p' ~/1_accuweather/curr_cond`
tput cup 4 16;tput setaf 3
echo "Hum"
tput cup 4 20;tput setaf 9
echo `sed -n '7p' ~/1_accuweather/curr_cond`
tput cup 4 25;tput setaf 3
echo "UVI"
tput cup 4 29;tput setaf 9
echo `sed -n '9p' ~/1_accuweather/curr_cond`
tput cup 5 1;tput setaf 3
echo "Wnd"
tput cup 5 5;tput setaf 9
echo `sed -n '5p' ~/1_accuweather/curr_cond`" @ "`sed -n '6p' ~/1_accuweather/curr_cond`
tput cup 5 21;tput setaf 3
echo "Vis"
tput cup 5 25;tput setaf 9
echo `sed -n '13p' ~/1_accuweather/curr_cond`
tput cup 6 1;tput setaf 3
echo "Ceil"
tput cup 6 6;tput setaf 9
echo `sed -n '11p' ~/1_accuweather/curr_cond`
tput cup 6 14;tput setaf 3
echo "Dew"
tput cup 6 18;tput setaf 9
echo `sed -n '12p' ~/1_accuweather/curr_cond`"°"
tput cup 6 22;tput setaf 3
echo "CC"
tput cup 6 25;tput setaf 9
echo `sed -n '10p' ~/1_accuweather/curr_cond`

# Today Day 0 (1st Group RIGHT) Mon
tput cup 2 35;tput setaf 9
echo "$(date --date="0 day" | awk '{print $1" "$3" "$2" "$6}')"
tput cup 2 51;tput setaf 1;tput bold
echo "↑";tput sgr0
tput cup 2 53;tput setaf 9
echo `sed -n '3p' ~/1_accuweather/first_days`"°"
tput cup 2 58;tput setaf 6;tput bold
echo "↓";tput sgr0
tput cup 2 60;tput setaf 9
echo `sed -n '4p' ~/1_accuweather/first_days`"°"
tput cup 3 35;tput setaf 2
echo `sed -n '5p' ~/1_accuweather/first_days`
tput cup 4 35;tput setaf 9
echo "Sun Rise"
tput cup 4 44;tput setaf 3
echo `sed -n '23p' ~/1_accuweather/curr_cond`
tput cup 4 50;tput setaf 9
echo "Moon Rise "
tput cup 4 60;tput setaf 6
echo `sed -n '25p' ~/1_accuweather/curr_cond`
tput cup 5 40;tput setaf 9
echo "Set"
tput cup 5 44;tput setaf 3
echo `sed -n '24p' ~/1_accuweather/curr_cond`
tput cup 5 56;tput setaf 9
echo "Set"
tput cup 5 60;tput setaf 6
echo `sed -n '26p' ~/1_accuweather/curr_cond`
tput cup 6 35;tput setaf 9
echo "Duration"
tput cup 6 44;tput setaf 3
echo `sed -n '16p' ~/1_accuweather/curr_cond`
tput cup 6 57;tput setaf 6
echo `sed -n '20p' ~/1_accuweather/curr_cond`

# Day 1 (2nd Group LEFT) Tue
tput cup 7 1;tput setaf 9
echo "----------------------------------"
tput cup 8 1;tput setaf 9
echo "$(date --date="1 day" | awk '{print $1" "$3" "$2" "$6}')"
tput cup 8 17;tput setaf 1;tput bold
echo "↑";tput sgr0
tput cup 8 19;tput setaf 9
echo `sed -n '8p' ~/1_accuweather/first_days`"°"
tput cup 8 25;tput setaf 6;tput bold
echo "↓";tput sgr0
tput cup 8 27;tput setaf 9
echo `sed -n '9p' ~/1_accuweather/first_days`"°"
tput cup 9 1;tput setaf 2
echo `sed -n '10p' ~/1_accuweather/first_days`

# Day 2 (2nd Group RIGHT) Wed
tput cup 7 35;tput setaf 9
echo "-------------------------------"
tput cup 8 35;tput setaf 9
echo "$(date --date="2 day" | awk '{print $1" "$3" "$2" "$6}')"
tput cup 8 51;tput setaf 1;tput bold
echo "↑";tput sgr0
tput cup 8 53;tput setaf 9
echo `sed -n '13p' ~/1_accuweather/first_days`"°"
tput cup 8 58;tput setaf 6;tput bold
echo "↓";tput sgr0
tput cup 8 60;tput setaf 9
echo `sed -n '14p' ~/1_accuweather/first_days`"°"
tput cup 9 35;tput setaf 2
echo `sed -n '5p' ~/1_accuweather/first_days`

# Day 3 (3rd Group LEFT) Thu
tput cup 10 1;tput setaf 9
echo "-------------------------------"
tput cup 11 1;tput setaf 9
echo "$(date --date="3 day" | awk '{print $1" "$3" "$2" "$6}')"
tput cup 11 17;tput setaf 1;tput bold
echo "↑";tput sgr0
tput cup 11 19;tput setaf 9
echo `sed -n '18p' ~/1_accuweather/first_days`"°"
tput cup 11 25;tput setaf 6;tput bold
echo "↓";tput sgr0
tput cup 11 27;tput setaf 9
echo `sed -n '19p' ~/1_accuweather/first_days`"°"
tput cup 12 1;tput setaf 2
echo `sed -n '10p' ~/1_accuweather/first_days`

# Day 4 (3rd Group RIGHT) Fri
tput cup 10 35;tput setaf 9
echo "-------------------------------"
tput cup 11 35;tput setaf 9
echo "$(date --date="4 day" | awk '{print $1" "$3" "$2" "$6}')"
tput cup 11 51;tput setaf 1;tput bold
echo "↑";tput sgr0
tput cup 11 53;tput setaf 9
echo `sed -n '23p' ~/1_accuweather/first_days`"°"
tput cup 11 58;tput setaf 6;tput bold
echo "↓";tput sgr0
tput cup 11 60;tput setaf 9
echo `sed -n '24p' ~/1_accuweather/first_days`"°"
tput cup 12 35;tput setaf 2
echo `sed -n '5p' ~/1_accuweather/first_days`

# Day 5 (4th Group LEFT) Sat
tput cup 13 1;tput setaf 9
echo "-------------------------------"
tput cup 14 1;tput setaf 9
echo "$(date --date="5 day" | awk '{print $1" "$3" "$2" "$6}')"
tput cup 14 17;tput setaf 1;tput bold
echo "↑";tput sgr0
tput cup 14 19;tput setaf 9
echo `sed -n '3p' ~/1_accuweather/last_days`"°"
tput cup 14 25;tput setaf 6;tput bold
echo "↓";tput sgr0
tput cup 14 27
echo `sed -n '4p' ~/1_accuweather/last_days`"°"
tput cup 15 1;tput setaf 2
echo `sed -n '5p' ~/1_accuweather/last_days`

# Day 6 (4th Group RIGHT) Sun
tput cup 13 35;tput setaf 9
echo "-------------------------------"
tput cup 14 35;tput setaf 9
echo "$(date --date="6 day" | awk '{print $1" "$3" "$2" "$6}')"
tput cup 14 51;tput setaf 1;tput bold
echo "↑";tput sgr0
tput cup 14 53;tput setaf 9
echo `sed -n '8p' ~/1_accuweather/last_days`"°"
tput cup 14 58;tput setaf 6;tput bold
echo "↓";tput sgr0
tput cup 14 60
echo `sed -n '9p' ~/1_accuweather/last_days`"°"
tput cup 15 35;tput setaf 2
echo `sed -n '10p' ~/1_accuweather/last_days`

# Day 7 (5th Group LEFT) Mon
tput cup 16 1;tput setaf 9
echo "-------------------------------"
tput cup 17 1;tput setaf 9
echo "$(date --date="7 day" | awk '{print $1" "$3" "$2" "$6}')"
tput cup 17 17;tput setaf 1;tput bold
echo "↑";tput sgr0
tput cup 17 19
echo `sed -n '13p' ~/1_accuweather/last_days`"°"
tput cup 17 25;tput setaf 6;tput bold
echo "↓";tput sgr0
tput cup 17 27;tput setaf 9
echo `sed -n '14p' ~/1_accuweather/last_days`"°"
tput cup 18 1;tput setaf 2
echo `sed -n '15p' ~/1_accuweather/last_days`
tput cup 19 1;tput setaf 9
echo "-------------------------------"

# Day 8 (5th Group RIGHT) Tue
tput cup 16 35;tput setaf 9
echo "-------------------------------"
tput cup 17 35;tput setaf 9
echo "$(date --date="8 day" | awk '{print $1" "$3" "$2" "$6}')"
tput cup 17 51;tput setaf 1;tput bold
echo "↑";tput sgr0
tput cup 17 53;tput setaf 9
echo `sed -n '18p' ~/1_accuweather/last_days`"°"
tput cup 17 58;tput setaf 6;tput bold
echo "↓";tput sgr0
tput cup 17 60;tput setaf 9
echo `sed -n '19p' ~/1_accuweather/last_days`"°"
tput cup 18 35;tput setaf 2
echo `sed -n '20p' ~/1_accuweather/last_days`
tput cup 19 35;tput setaf 9
echo "-------------------------------"
tput sgr0
$SHELL

ENJOY!

--- EDIT --- EDIT --- EDIT ---
I forgot to add - if you use 1_accuweather in a conky already comment out this line:

##~/1_accuweather/1_accuweather -f2016 2>&1 >/dev/null

To use existing data.

Last edited by Sector11 (2017-07-04 22:19:09)


Debian 12 Beardog, SoxDog and still a Conky 1.9er

Offline

#1709 2017-07-05 19:52:19

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

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

Yep, confirmed, adding the parameter

-o /dev/null

to wget causes the latter to throw away it's log output.
What I'd really want to know though, is what causes that random behaviour to wget, ie. sometimes the wget-log files are created and sometimes they're not.

@S11
That's nice and minimal S11, love it.


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

#1710 2017-07-05 20:18:40

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:

What I'd really want to know though, is what causes that random behaviour to wget, ie. sometimes the wget-log files are created and sometimes they're not.

The answer is in the Twilight Zone  smile

@S11
That's nice and minimal S11, love it.

I thought you would.  I also thought I had posted it before but could not find it, so I put it here.
Enjoy


Debian 12 Beardog, SoxDog and still a Conky 1.9er

Offline

#1711 2017-07-05 21:37:59

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

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

The thing is, I haven't seen wget do it for quite some time - weeks, months? Who knows?
Maybe that's the reason it hasn't been bothering me lately.
Could it be the version ragamatrix's using?
I'm using 1.19.1-2; what are you guys using?


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

#1712 2017-07-05 21:59:37

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

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

wget/oldstable,now 1.16-1+deb8u2 amd64 [installed]
And I get wget.log files when I run a download speed test:

 05 Jul 17 @ 19:01:33 ~
   $ alias w11
alias w11='wget --output-document=/dev/null http://linuxfreedom.com/crunchbang/crunchbang-11-20130506-i686.iso'
 
 05 Jul 17 @ 19:01:38 ~
   $ 

Now looks like this:

## 771MB CrunchBang 771MB ISO
##alias stcb11='wget --output-document=/dev/null http://linuxfreedom.com/crunchbang/crunchbang-11-20130506-i486.iso'
alias w11='wget -o /dev/null --output-document=/dev/null http://linuxfreedom.com/crunchbang/crunchbang-11-20130506-i686.iso'
alias c11='curl -o /dev/null http://linuxfreedom.com/crunchbang/crunchbang-11-20130506-i686.iso'

Debian 12 Beardog, SoxDog and still a Conky 1.9er

Offline

#1713 2017-07-06 06:12:09

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

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

Alright, running

wget --output-document=/dev/null http://linuxfreedom.com/crunchbang/crunchbang-11-20130506-i686.iso

doesn't create any wget-log files.
Any other cases where you get the log files?


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

#1714 2017-07-06 06:52:57

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)

I get these log files for a long time only in unstable.

apt-cache policy wget
wget:
  Installiert:           1.19.1-4
  Installationskandidat: 1.19.1-4
  Versionstabelle:
 *** 1.19.1-4 500
        500 http://httpredir.debian.org/debian unstable/main amd64 Packages
        100 /var/lib/dpkg/status
-------------------------------
apt-cache policy wget
wget:
  Installiert:           1.16-1+deb8u2
  Installationskandidat: 1.16-1+deb8u2
  Versionstabelle:
 *** 1.16-1+deb8u2 0
        500 http://ftp.rrzn.uni-hannover.de/debian/debian/ jessie/main amd64 Packages
        100 /var/lib/dpkg/status

And, yes, it must have to do with the update of the package. Because it was not before.

supplementing arch-linux

pacman -Qi wget
Name                     : wget
Version                  : 1.19.1-2
Beschreibung             : A network utility to retrieve files from the Web
Architektur              : x86_64
URL                      : http://www.gnu.org/software/wget/wget.html
Lizenzen                 : GPL3
Gruppen                  : Nichts
Stellt bereit            : Nichts
Hängt ab von             : gnutls  libidn  libutil-linux  libpsl  pcre
Optionale Abhängigkeiten : ca-certificates: HTTPS downloads [Installiert]
Benötigt von             : apacman  conkywx
Optional für             : libqalculate
In Konflikt mit          : Nichts
Ersetzt                  : Nichts
Installationsgröße       : 2,59 MiB
Packer                   : Antonio Rojas <arojas@archlinux.org>
Erstellt am              : Sa 18 Feb 2017 12:19:52 CET
Installiert am           : Do 23 Feb 2017 11:21:44 CET
Installationsgrund       : Ausdrücklich installiert
Installations-Skript     : Nein
Verifiziert durch        : Signatur

--> Do 23 Feb 2017 11:21:44 CET   ]:D

Last edited by unklar (2017-07-06 08:06:27)

Offline

#1715 2017-07-06 09:21:12

ragamatrix
Member
Registered: 2015-10-04
Posts: 427

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

Tanks for the searches guys, here my wget version: GNU Wget 1.19.1-4 compilé sur linux-gnu.

Last edited by ragamatrix (2017-07-06 09:22:28)

Offline

#1716 2017-07-06 12:47:32

ragamatrix
Member
Registered: 2015-10-04
Posts: 427

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

14:33 raphix > conky -c ~/1_accuweather/conkymoon80s-old-version                                                            < debian:pts/2:~
conky: Syntax error (/home/raphix/1_accuweather/conkymoon80s-old-version:1: '=' expected near 'tr') while reading config file. 
conky: Assuming it's in old syntax and attempting conversion.
conky: desktop window (dc) is root window
conky: window type - desktop
conky: drawing to created window (0x1600002)
conky: drawing to double buffer
conky: forked to background, pid is 10613
 14:33 raphix >                                                                                                              < debian:pts/2:~

No more logs problems with the old syntax... Conky v-10 I hate you  ]:D
oldconkyschool.th.png

Offline

#1717 2017-07-06 13:32:04

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

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

ragamatrix wrote:

Conky v-10 I hate you  ]:D

You are not alone.  Believe me.


Debian 12 Beardog, SoxDog and still a Conky 1.9er

Offline

#1718 2017-07-06 13:35:18

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:

Alright, running

wget --output-document=/dev/null http://linuxfreedom.com/crunchbang/crunchbang-11-20130506-i686.iso

doesn't create any wget-log files.
Any other cases where you get the log files?

No nothing else.  Seem a few other places I use wget they all have the " -o /dev/null/ " option added.

What a kerfuffle that wget creates.

EDIT:  WRONG!  I went looking I have a lot of places using nothing or ' -q '  so changing ' -q ' to ' -o /dev/null/ ' and adding it where needed.

Last edited by Sector11 (2017-07-06 13:52:53)


Debian 12 Beardog, SoxDog and still a Conky 1.9er

Offline

#1719 2017-07-06 13:52:03

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

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

Can you do me a favor and try them without the -o /dev/null option?
If they still give you unwanted log files, please post the urls here so I can try them with the newer wget version.

@ragamatrix
I use the 1.10 conky and have no problems whatsoever. It must be something else...


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

#1720 2017-07-06 13:53:36

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

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

will stop editing and test.  smile

And send to you as well.


Debian 12 Beardog, SoxDog and still a Conky 1.9er

Offline

Board footer

Powered by FluxBB