You are not logged in.
^Ah OK thanks.
I'll still post updates from time to time just so you know what's going on.
And occasionally there are times when I'm not sure if I've missed the reason why you did something a certain way. In those cases I might still appreciate a hint...
...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
conky sleep times
@damo I need your advice again.
bl-obthemes writes conky entries to ~/.config/conky/conky-sessionfile as something like:
sleep 1 && [wmctrl -s <desktop> &&] conky -c /path/to/file &
while bl-conky-manager (which doesn't handle multi-desktops) writes:
conky -c /path/to/file & sleep 1s
Both seem to be working OK.
So, two questions:
1) Should conky better be launched after a sleep, or with a sleep after launching?
2) Is the sleep actually needed at all?
---
PS in the future it might be nice to write just the filename in conky-sessionfile (plus a digit to show the desktop) and let the various conky scripts handle the sleep themselves, like tint2...
Last edited by johnraff (2020-04-20 07:11:36)
...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
I have no idea how BLOB or that works but my "current.sh" file that starts multiple conkys on various desktops uses sleep and wmctrl.
#!/bin/bash
killall conky
# on desktop 7 = wmctrl -s 6
###############################
(sleep 0 && wmctrl -s 6 && conky -c ~/.conkyrc) &
# on desktop 6 = wmctrl -s 5
###############################
(sleep 3 && wmctrl -s 5 && conky -c /media/5/Conky/Weather_com_conky_script/wetter_com-1.9.conky) &
# on desktop 5 = wmctrl -s 4
###############################
# on desktop 4 = wmctrl -s 3
###############################
# on desktop 3 = wmctrl -s 2
###############################
#(sleep 1 && wmctrl -s 1 && conky -q -c /media/5/Conky/S11_Dates.conky) &
# on desktop 2 = wmctrl -s 1
###############################
(sleep 4 && wmctrl -s 1 && conky -c /media/5/Conky/S11_Rem_Cal.conky) &
(sleep 4 && wmctrl -s 1 && conky -c /media/5/Conky/S11_Dates.conky) &
# on desktop 1 = wmctrl -s 0
###############################
(sleep 5 && wmctrl -s 0 && conky -c /media/5/Conky/S11_Rem_Today.conky) &
(sleep 5 && wmctrl -s 0 && conky -c /media/5/Conky/time.conky) &
(sleep 5 && wmctrl -s 0 && conky -c /media/5/Conky/S11_thin_r2_side.conky) &
(sleep 5 && wmctrl -s 0 && conky -c /media/5/Conky/S11_thin_l2_side.conky) &
(sleep 5 && wmctrl -s 0 && conky -c /media/5/Conky/S11_MD_Cal-br.conky) &
(sleep 5 && wmctrl -s 0 && conky -c /media/5/Conky/S11_Email_0.conky) &
(sleep 5 && wmctrl -s 0 && conky -c /media/5/Conky/Accuweather_conky_script/S11_accu_tm_BAR_2016-full.conky) &
(sleep 5 && wmctrl -s 0 && conky -c /media/5/Conky/Accuweather_conky_script/S11_accu_UVI.conky) &
# on all desktops
##########################
(sleep 5 && wmctrl -s 0 && conky -c /media/5/Conky/Eagle.conky) &
Starting with the highest number desktop - no sleep.
as they come down to Desktop 1 (wmctrl 0) longer sleep times are needed to make sure the conky has actually stared on that desktop.
The sleep command is from the time the bash script started not time since last "sleep command"
No idea if that helps but there you are.
Debian 12 Beardog, SoxDog and still a Conky 1.9er
Offline
From what I remember, the conky-manager just starts conkys, so that they appear on all desktops. IIRC the BLOB commands were an attempt to restore them on any per-desktop basis that the user had set up, so a sleep was needed to get each process started on a particular desktop before moving on to the next one.
Last edited by damo (2020-04-20 15:11:42)
Be Excellent to Each Other...
The Bunsenlabs Lithium Desktop » Here
FORUM RULES and posting guidelines «» Help page for forum post formatting
Artwork on DeviantArt «» BunsenLabs on DeviantArt
Offline
^ & ^^ thanks to both of you.
a sleep was needed to get each process started on a particular desktop before moving on to the next one
Starting to make sense, and explains Sector11's setup too.
@Sector11, I wonder if you need to start all those conkys with a fork like that? Do they not have "fork to background" set in the config? Or are you covering the case when maybe they might not? If the latter then I guess the way you have it is the right way. (Although I'm not sure if it's OK to have multiple wmctrl processes running in subshells.) Otherwise, I wonder if this might not work too:
#!/bin/bash
killall conky
# on desktop 7 = wmctrl -s 6
###############################
wmctrl -s 6
conky -c ~/.conkyrc
# on desktop 6 = wmctrl -s 5
###############################
sleep 1
wmctrl -s 5
conky -c /media/5/Conky/Weather_com_conky_script/wetter_com-1.9.conky
# on desktop 5 = wmctrl -s 4
###############################
# on desktop 4 = wmctrl -s 3
###############################
# on desktop 3 = wmctrl -s 2
###############################
#(sleep 1 && wmctrl -s 1 && conky -q -c /media/5/Conky/S11_Dates.conky) &
# on desktop 2 = wmctrl -s 1
###############################
sleep 1
wmctrl -s 1
conky -c /media/5/Conky/S11_Rem_Cal.conky
conky -c /media/5/Conky/S11_Dates.conky
# on desktop 1 = wmctrl -s 0
###############################
sleep 1
wmctrl -s 0
conky -c /media/5/Conky/S11_Rem_Today.conky
conky -c /media/5/Conky/time.conky
conky -c /media/5/Conky/S11_thin_r2_side.conky
conky -c /media/5/Conky/S11_thin_l2_side.conky
conky -c /media/5/Conky/S11_MD_Cal-br.conky
conky -c /media/5/Conky/S11_Email_0.conky
conky -c /media/5/Conky/Accuweather_conky_script/S11_accu_tm_BAR_2016-full.conky
conky -c /media/5/Conky/Accuweather_conky_script/S11_accu_UVI.conky
# on all desktops
##########################
sleep 1
wmctrl -s 0
conky -c /media/5/Conky/Eagle.conky
See what I'm saying? Just one sleep and wmctrl command for each desktop. Or maybe add an ampersand at the end of each conky line if some of them aren't forking. I'm not advocating you change your script, just wondering if the above code shows what's happening (in the light of damo's comment)?
@damo Yes BLOB handles putting conkys on different desktops. I tried it and it works fine, also after logging out and back in. Great work!
OK I'm starting to get the idea of the sleeps. Yesterday on a VM I took all the sleeps out of the conky restore sections - and writing to conky/conky-sessionfile - of both BLOB and bl-conky-manager. Conkys were still saved and restored with no problem, but what I didn't look at at that time was desktop switching with wmctrl.
It looks as if the most important thing is to stay on the current desktop long enough for any processes that have been started to get up and running. Does that sound right?
If that's true then bl-conky-manager's way with the sleep after the conky launch might be more robust. Maybe BLOB's way is working too because the sleep before the conky is allowing time for things that might have been launched on a previous desktop?
Let's try switching BLOB to match bl-conky-manager.
---
In future it might be cool if bl-conky-manager could handle conkys on different desktops like BLOB. I can imagine storing the desktop number in conky-sessionfile along with the config file path, but I'm not sure exactly how the user interface would work in that case...
---
Quick question: Preferences>Conky>Conky Chooser launches bl-conky-manager with "BunsenLabs Conky Manager" as its title. Change the menu item to "Conky Manager" to match?
...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
@ John ...
It looks as if the most important thing is to stay on the current desktop long enough for any processes that have been started to get up and running. Does that sound right?
↑↑↑↑↑↑ That is the key to the whole thing ↑↑↑↑↑↑↑
Tried your script - failed! ran the first two conkys.
Debian 12 Beardog, SoxDog and still a Conky 1.9er
Offline
Tried your script - failed! ran the first two conkys.
Hmm...
If you're busy, let's leave it there, but if you have a few minutes, what happened after the second conky?
Any error message? Does /media/5/Conky/Weather_com_conky_script/wetter_com-1.9.conky "fork to background"?
What happens if you add an ampersand to each line, thus:
#!/bin/bash
killall conky
# on desktop 7 = wmctrl -s 6
###############################
wmctrl -s 6
conky -c ~/.conkyrc &
# on desktop 6 = wmctrl -s 5
###############################
sleep 1
wmctrl -s 5
conky -c /media/5/Conky/Weather_com_conky_script/wetter_com-1.9.conky &
# on desktop 5 = wmctrl -s 4
###############################
# on desktop 4 = wmctrl -s 3
###############################
# on desktop 3 = wmctrl -s 2
###############################
#(sleep 1 && wmctrl -s 1 && conky -q -c /media/5/Conky/S11_Dates.conky) &
# on desktop 2 = wmctrl -s 1
###############################
sleep 1
wmctrl -s 1
conky -c /media/5/Conky/S11_Rem_Cal.conky &
conky -c /media/5/Conky/S11_Dates.conky &
# on desktop 1 = wmctrl -s 0
###############################
sleep 1
wmctrl -s 0
conky -c /media/5/Conky/S11_Rem_Today.conky &
conky -c /media/5/Conky/time.conky &
conky -c /media/5/Conky/S11_thin_r2_side.conky &
conky -c /media/5/Conky/S11_thin_l2_side.conky &
conky -c /media/5/Conky/S11_MD_Cal-br.conky &
conky -c /media/5/Conky/S11_Email_0.conky &
conky -c /media/5/Conky/Accuweather_conky_script/S11_accu_tm_BAR_2016-full.conky &
conky -c /media/5/Conky/Accuweather_conky_script/S11_accu_UVI.conky &
# on all desktops
##########################
sleep 1
wmctrl -s 0
conky -c /media/5/Conky/Eagle.conky &
Or if even that fails, if all the 'sleep 1' lines go to 'sleep 2'?
But, in the interests of science and only if you have the time.
...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
...
In future it might be cool if bl-conky-manager could handle conkys on different desktops like BLOB. I can imagine storing the desktop number in conky-sessionfile along with the config file path, but I'm not sure exactly how the user interface would work in that case...---
Quick question: Preferences>Conky>Conky Chooser launches bl-conky-manager with "BunsenLabs Conky Manager" as its title. Change the menu item to "Conky Manager" to match?
I originally thought of adding per-desktop functionality, but found it tricky to implement at the time, so we went with what was working. As you say, the yad UI could get complicated.
"Conky Manager" is fine with me, and "Tint2 Manager" needs adjusting as well in that case.
Be Excellent to Each Other...
The Bunsenlabs Lithium Desktop » Here
FORUM RULES and posting guidelines «» Help page for forum post formatting
Artwork on DeviantArt «» BunsenLabs on DeviantArt
Offline
@John ....
Your original idea for the script: current_2.sh:
21 Apr 20 @ 09:55:31 ~
$ /media/5/Conky/OBMenuS/S11_Current_2.sh
Conky: forked to background, pid is 6746
Conky: desktop window (6b3) is root window
Conky: window type - normal
Conky: drawing to created window (0xe00002)
Conky: drawing to double buffer
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 32174 100 32174 0 0 48896 0 --:--:-- --:--:-- --:--:-- 48822
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0Conky: desktop window (6b3) is root window
Conky: window type - normal
Conky: drawing to created window (0x1c00001)
Conky: drawing to double buffer
100 25545 100 25545 0 0 78842 0 --:--:-- --:--:-- --:--:-- 79086
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 25640 100 25640 0 0 41827 0 --:--:-- --:--:-- --:--:-- 41758
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 30591 100 30591 0 0 47427 0 --:--:-- --:--:-- --:--:-- 47427
rm: cannot remove '/media/5/Conky/Accuweather_conky_script/altogether24': Is a directory
rm: cannot remove '/media/5/Conky/Accuweather_conky_script/altogether24_2015': No such file or directory
rm: cannot remove '/media/5/Conky/Accuweather_conky_script/altogether24_2016': No such file or directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 482: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 502: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 536: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 537: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 555: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 556: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 574: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 575: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 593: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 594: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 612: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 613: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 631: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 632: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 650: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 651: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 669: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 670: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 688: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 689: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 707: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 708: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 726: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 727: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
cp: -r not specified; omitting directory '/media/5/Conky/Accuweather_conky_script/altogether24'
cp: -r not specified; omitting directory '/media/5/Conky/Accuweather_conky_script/altogether24'
rm: cannot remove '/media/5/Conky/Accuweather_conky_script/altogether24': Is a directory
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
/media/5/Conky/Weather_com_conky_script/weather_com: line 166: convert: command not found
Looks like it got hung up with Teos weather scripts.
Running my in a terminal (current.sh) gives errors as well but they all work. Must talk to Teo.
21 Apr 20 @ 10:06:11 ~
$ /media/5/Conky/OBMenuS/S11_Current.sh
21 Apr 20 @ 10:06:31 ~
$ Conky: forked to background, pid is 19530
Conky: desktop window (6b3) is root window
Conky: window type - normal
Conky: drawing to created window (0xe00002)
Conky: drawing to double buffer
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 32177 100 32177 0 0 29145 0 0:00:01 0:00:01 --:--:-- 29119
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 25541 100 25541 0 0 85136 0 --:--:-- --:--:-- --:--:-- 85136
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 30271 100 30271 0 0 42695 0 --:--:-- --:--:-- --:--:-- 42635
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 25986 100 25986 0 0 56862 0 --:--:-- --:--:-- --:--:-- 56862
Conky: desktop window (6b3) is root window
Conky: window type - normal
Conky: drawing to created window (0x1c00001)
Conky: drawing to double buffer
rm: cannot remove '/media/5/Conky/Accuweather_conky_script/altogether24': Is a directory
rm: cannot remove '/media/5/Conky/Accuweather_conky_script/altogether24_2015': No such file or directory
rm: cannot remove '/media/5/Conky/Accuweather_conky_script/altogether24_2016': No such file or directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 482: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 502: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 536: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 537: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 555: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 556: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 574: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 575: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 593: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 594: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 612: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 613: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 631: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 632: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 650: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 651: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 669: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 670: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 688: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 689: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 707: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 708: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 726: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 727: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
cp: -r not specified; omitting directory '/media/5/Conky/Accuweather_conky_script/altogether24'
cp: -r not specified; omitting directory '/media/5/Conky/Accuweather_conky_script/altogether24'
rm: cannot remove '/media/5/Conky/Accuweather_conky_script/altogether24': Is a directory
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
Conky: forked to background, pid is 21069
Conky: desktop window (6b3) is root window
Conky: window type - normal
Conky: drawing to created window (0x2000002)
Conky: drawing to double buffer
Conky: forked to background, pid is 21166
Conky: desktop window (6b3) is root window
Conky: window type - normal
Conky: drawing to created window (0x2200002)
Conky: drawing to double buffer
Conky: desktop window (6b3) is root window
Conky: window type - normal
Conky: drawing to created window (0x3e00002)
Conky: drawing to double buffer
Conky: forked to background, pid is 21321
Conky: desktop window (6b3) is root window
Conky: window type - normal
Conky: drawing to created window (0x2800002)
Conky: /media/5/Conky/Accuweather_conky_script/S11_accu_UVI.conky: 66: no such configuration: '7'
Conky: drawing to double buffer
Conky: forked to background, pid is 21427
Conky: forked to background, pid is 21430
Conky: forked to background, pid is 21431
Conky: desktop window (6b3) is root window
Conky: window type - normal
Conky: forked to background, pid is 21433
Conky: drawing to created window (0x2400002)
--2020-04-21 10:06:37-- https://mail.google.com/mail/feed/atom
Conky: drawing to double buffer
--2020-04-21 10:06:37-- https://mail.google.com/mail/feed/atom
Resolving mail.google.com (mail.google.com)...
Resolving mail.google.com (mail.google.com)...
Conky: forked to background, pid is 21456
Conky: forked to background, pid is 21457
Conky: desktop window (6b3) is root window
Conky: window type - normal
Conky: drawing to created window (0x2c00001)
Conky: drawing to double buffer
Conky: desktop window (6b3) is root window
Conky: desktop window (6b3) is root window
Conky: window type - normal
Conky: window type - normal
Conky: drawing to created window (0x2e00001)
Conky: drawing to created window (0x2a00002)
Conky: drawing to double buffer
Conky: drawing to double buffer
172.217.172.69, 2800:3f0:4002:802::2005
Connecting to mail.google.com (mail.google.com)|172.217.172.69|:443...
Conky: desktop window (6b3) is root window
172.217.172.69, 2800:3f0:4002:802::2005
Connecting to mail.google.com (mail.google.com)|172.217.172.69|:443... Conky: window type - normal
Conky: drawing to created window (0x3200001)
Conky: drawing to double buffer
connected.
connected.
Conky: desktop window (6b3) is root window
Conky: desktop window (6b3) is root window
Conky: window type - normal
Conky: window type - normal
Conky: drawing to created window (0x3000002)
Conky: drawing to created window (0x3c00002)
Conky: drawing to double buffer
Conky: drawing to double buffer
HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/xml]
Saving to: ‘STDOUT’
- [ <=> ] 340 --.-KB/s in 0s
2020-04-21 10:06:37 (11.1 MB/s) - written to stdout [340]
--2020-04-21 10:06:37-- https://mail.google.com/mail/feed/atom
Resolving mail.google.com (mail.google.com)... 172.217.172.69, 2800:3f0:4002:802::2005
Connecting to mail.google.com (mail.google.com)|172.217.172.69|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/xml]
Saving to: ‘STDOUT’
- [ <=> ] 3.76K --.-KB/s in 0s
2020-04-21 10:06:37 (10.4 MB/s) - written to stdout [3846]
--2020-04-21 10:06:37-- https://mail.google.com/mail/feed/atom
Resolving mail.google.com (mail.google.com)... 172.217.172.69, 2800:3f0:4002:802::2005
Connecting to mail.google.com (mail.google.com)|172.217.172.69|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/xml]
Saving to: ‘STDOUT’
- [ <=> ] 340 --.-KB/s in 0s
2020-04-21 10:06:38 (10.9 MB/s) - written to stdout [340]
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-21890YdSL-a5JNc1H': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/d10.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-21893OQs2p-0T5A6K': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/d11.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-21896SujLik61St3I': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/d12.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-218999_RSuDmHgOeN': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/d13.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-21902JDzZLd0iJkVN': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/d14.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-21905O6x4BivnF5fM': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/d15.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-219082L5Tntk4vtSM': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/d1.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-219119CARkTItc0HP': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/d2.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-21914qlcJQceovqfQ': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/d3.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-219172fFbCD0zDkBP': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/d4.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-21920soCSMiAw7tAS': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/d5.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-21923P5putosrUh3S': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/d6.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-21926Kn65rf4WolfS': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/d7.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-219297xVQzsQf2d9U': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/d8.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-21932NZ1l0YYiDSDV': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/d9.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-21935D1SA_u97WKRU': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h10.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-21938fb3zeM9ZsPIX': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h11.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-21941bBtVn59EjqoY': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h12.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-21944E3dHlD17KyKW': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h13.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-219475H-SJh3QjdoX': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h14.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-21950JMMkoBVOzZr1': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h15.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-21953cPydm1z5kwvZ': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h16.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-21956tPOapBO4oTr3': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h1.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-21959WABP9MyPMVa4': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h2.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-21962LaFjejBfnRu2': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h3.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-219656sc3SEUa9Ta3': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h4.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-21968p19wDsDHOSc6': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h5.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-21971Ah4S815s5qG6': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h6.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-21974d8-LRjYkofZ4': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h7.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-21977ZiN7rvLF0Jv5': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h8.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-21980vEB9T8aaytu9': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h9.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-21983zV-oUhmVWHE8': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/now.png' @ error/convert.c/ConvertImageCommand/3258.
200 OK
Length: unspecified [text/xml]
Saving to: ‘STDOUT’
- [ <=> ] 3.76K --.-KB/s in 0.002s
2020-04-21 10:06:39 (1.92 MB/s) - written to stdout [3846]
And finally your idea from above: current_3.sh
21 Apr 20 @ 10:20:08 ~
$ /media/5/Conky/OBMenuS/S11_Current_3.sh
Conky: forked to background, pid is 29675
Conky: desktop window (6b3) is root window
Conky: window type - normal
Conky: drawing to created window (0xe00002)
Conky: drawing to double buffer
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 32175 100 32175 0 0 46495 0 --:--:-- --:--:-- --:--:-- 46495
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0Conky: desktop window (6b3) is root window
Conky: window type - normal
Conky: drawing to created window (0x1c00001)
Conky: drawing to double buffer
100 30182 100 30182 0 0 46433 0 --:--:-- --:--:-- --:--:-- 46433
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0Conky: forked to background, pid is 30193
Conky: desktop window (6b3) is root window
Conky: window type - normal
Conky: drawing to created window (0x2200002)
Conky: drawing to double buffer
Conky: forked to background, pid is 30285
Conky: desktop window (6b3) is root window
Conky: window type - normal
Conky: drawing to created window (0x2000002)
Conky: drawing to double buffer
100 30198 100 30198 0 0 46103 0 --:--:-- --:--:-- --:--:-- 46033
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 30589 100 30589 0 0 67081 0 --:--:-- --:--:-- --:--:-- 67081
rm: cannot remove '/media/5/Conky/Accuweather_conky_script/altogether24': Is a directory
rm: cannot remove '/media/5/Conky/Accuweather_conky_script/altogether24_2015': No such file or directory
rm: cannot remove '/media/5/Conky/Accuweather_conky_script/altogether24_2016': No such file or directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 482: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 502: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
Conky: desktop window (6b3) is root window
Conky: window type - normal
Conky: drawing to created window (0x2a00002)
Conky: /media/5/Conky/Accuweather_conky_script/S11_accu_UVI.conky: 66: no such configuration: '7'
Conky: drawing to double buffer
Conky: forked to background, pid is 30615
Conky: forked to background, pid is 30620
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
Conky: forked to background, pid is 30623
Conky: forked to background, pid is 30638
Conky: forked to background, pid is 30640
Conky: desktop window (6b3) is root window
Conky: window type - normal
Conky: drawing to created window (0x2400002)
Conky: drawing to double buffer
--2020-04-21 10:20:18-- https://mail.google.com/mail/feed/atom
Resolving mail.google.com (mail.google.com)... 172.217.172.69, 2800:3f0:4002:802::2005
Connecting to mail.google.com (mail.google.com)|172.217.172.69|:443... sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
Conky: desktop window (6b3) is root window
Conky: window type - normal
Conky: drawing to created window (0x2e00002)
Conky: drawing to double buffer
connected.
--2020-04-21 10:20:18-- https://mail.google.com/mail/feed/atom
Resolving mail.google.com (mail.google.com)... sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
172.217.172.69, 2800:3f0:4002:802::2005
Connecting to mail.google.com (mail.google.com)|172.217.172.69|:443... sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
connected.
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
Conky: desktop window (6b3) is root window
Conky: window type - normal
Conky: drawing to created window (0x2c00002)
Conky: forked to background, pid is 30829
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
Conky: drawing to double buffer
Conky: desktop window (6b3) is root window
Conky: window type - normal
Conky: drawing to created window (0x3000001)
Conky: drawing to double buffer
Conky: desktop window (6b3) is root window
Conky: window type - normal
Conky: drawing to created window (0x3c00002)
Conky: drawing to double buffer
Conky: desktop window (6b3) is root window
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
Conky: window type - normal
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
Conky: drawing to created window (0x2800002)
Conky: drawing to double buffer
HTTP request sent, awaiting response... sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
Conky: desktop window (6b3) is root window
Conky: window type - normal
Conky: drawing to created window (0x3200001)
Conky: drawing to double buffer
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
HTTP request sent, awaiting response... sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 536: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 537: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 555: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 556: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 574: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 575: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 593: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 594: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 612: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 613: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 631: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 632: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 650: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 651: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 669: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 670: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
200 OK
Length: unspecified [text/xml]
Saving to: ‘STDOUT’
- [<=> ] 0 --.-KB/s sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
- [ <=> ] 340 --.-KB/s in 0s
2020-04-21 10:20:18 (7.28 MB/s) - written to stdout [340]
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 688: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 689: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
--2020-04-21 10:20:18-- https://mail.google.com/mail/feed/atom
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
Resolving mail.google.com (mail.google.com)... sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
172.217.172.69, 2800:3f0:4002:802::2005
Connecting to mail.google.com (mail.google.com)|172.217.172.69|:443... sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
connected.
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 707: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 708: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
/media/5/Conky/Accuweather_conky_script/accuweather: line 726: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
/media/5/Conky/Accuweather_conky_script/accuweather: line 727: /media/5/Conky/Accuweather_conky_script/altogether24: Is a directory
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
cp: -r not specified; omitting directory '/media/5/Conky/Accuweather_conky_script/altogether24'
cp: -r not specified; omitting directory '/media/5/Conky/Accuweather_conky_script/altogether24'
rm: cannot remove '/media/5/Conky/Accuweather_conky_script/altogether24': Is a directory
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
HTTP request sent, awaiting response... sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: -e expression #1, char 23: unknown option to `s'
sed: couldn't edit /media/5/Conky/Accuweather_conky_script/altogether24: not a regular file
200 OK
Length: unspecified [text/xml]
Saving to: ‘STDOUT’
- [ <=> ] 3.76K --.-KB/s in 0.001s
2020-04-21 10:20:18 (7.07 MB/s) - written to stdout [3846]
--2020-04-21 10:20:18-- https://mail.google.com/mail/feed/atom
Resolving mail.google.com (mail.google.com)...
21 Apr 20 @ 10:20:18 ~
$ 172.217.172.69, 2800:3f0:4002:802::2005
Connecting to mail.google.com (mail.google.com)|172.217.172.69|:443... Conky: forked to background, pid is 31744
connected.
Conky: desktop window (6b3) is root window
Conky: window type - normal
Conky: drawing to created window (0x3e00001)
Conky: drawing to double buffer
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/xml]
Saving to: ‘STDOUT’
- [ <=> ] 340 --.-KB/s in 0s
2020-04-21 10:20:19 (13.7 MB/s) - written to stdout [340]
200 OK
Length: unspecified [text/xml]
Saving to: ‘STDOUT’
- [ <=> ] 3.76K --.-KB/s in 0s
2020-04-21 10:20:19 (7.72 MB/s) - written to stdout [3846]
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-32048CAK8Dan0z18O': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/d10.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-32051-nRpaaRnr98R': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/d11.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-32054llyKR23mj2rR': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/d12.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-32057wimBpl2fUKQR': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/d13.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-32060Ny9_kVtiYbIU': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/d14.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-32063Vy3On8Mfts5T': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/d15.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-32066shf8IWrUFjNU': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/d1.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-32069i_vLCGO5FdCX': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/d2.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-32072fraFlJPatchY': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/d3.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-32075rZsV3a5B2LBW': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/d4.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-32078dU5TUIsGDahX': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/d5.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-32081UpZutQ1MHBm0': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/d6.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-32084HUSA_AhqCvT0': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/d7.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-32087uHKvGbkwWTc0': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/d8.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-32090Gdj0U3WlkZY2': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/d9.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-32093o7Zgr9LsGib2': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h10.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-32096aHLH_ZHTugP2': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h11.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-32099vgrnzUVGyYQ5': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h12.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-32102tMwPkIN3N2y6': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h13.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-32105N85Yw3pHRIX4': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h14.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-32108w5Qjo8wdemE5': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h15.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-32111JklgLEBBY3t8': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h16.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-321148Vy7M4JFaYJ7': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h1.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-32117YVTJElkZnLd8': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h2.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-321205K3Muy7Ksp3a': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h3.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-32123riOUfNXtRsla': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h4.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-32126Mq6oBSlH1I1a': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h5.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-32129iQbIoM8nJP1d': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h6.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-32132uvkX3ea7ZvJe': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h7.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-32135dMtRX_4cMLSc': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h8.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-32138lkwydgaiGDud': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/h9.png' @ error/convert.c/ConvertImageCommand/3258.
convert-im6.q16: delegate failed `'rsvg-convert' -o '%o' '%i'' @ error/delegate.c/InvokeDelegate/1928.
convert-im6.q16: unable to open file `/tmp/magick-32141fAC-Vqk27ivh': No such file or directory @ error/constitute.c/ReadImage/600.
convert-im6.q16: no images defined `/media/5/Conky/Weather_com_conky_script/Forecast_Images/now.png' @ error/convert.c/ConvertImageCommand/3258.
--2020-04-21 10:21:47-- https://mail.google.com/mail/feed/atom
--2020-04-21 10:21:47-- https://mail.google.com/mail/feed/atom
Resolving mail.google.com (mail.google.com)... Resolving mail.google.com (mail.google.com)... 172.217.173.5, 2800:3f0:4002:80d::2005
Connecting to mail.google.com (mail.google.com)|172.217.173.5|:443... 172.217.173.5, 2800:3f0:4002:80d::2005
Connecting to mail.google.com (mail.google.com)|172.217.173.5|:443... connected.
connected.
HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/xml]
Saving to: ‘STDOUT’
- [ <=> ] 340 --.-KB/s in 0s
2020-04-21 10:21:48 (10.8 MB/s) - written to stdout [340]
200 OK
Length: unspecified [text/xml]
Saving to: ‘STDOUT’
- [ <=> ] 3.76K --.-KB/s in 0s
2020-04-21 10:21:49 (9.52 MB/s) - written to stdout [3846]
--2020-04-21 10:23:17-- https://mail.google.com/mail/feed/atom
--2020-04-21 10:23:17-- https://mail.google.com/mail/feed/atom
Resolving mail.google.com (mail.google.com)... Resolving mail.google.com (mail.google.com)... 172.217.173.5, 2800:3f0:4002:80d::2005
Connecting to mail.google.com (mail.google.com)|172.217.173.5|:443... 172.217.173.5, 2800:3f0:4002:80d::2005
Connecting to mail.google.com (mail.google.com)|172.217.173.5|:443... connected.
connected.
HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/xml]
Saving to: ‘STDOUT’
- [ <=> ] 340 --.-KB/s in 0s
2020-04-21 10:23:18 (8.40 MB/s) - written to stdout [340]
200 OK
Length: unspecified [text/xml]
Saving to: ‘STDOUT’
- [ <=> ] 3.76K --.-KB/s in 0s
2020-04-21 10:23:18 (8.37 MB/s) - written to stdout [3846]
--2020-04-21 10:24:47-- https://mail.google.com/mail/feed/atom
--2020-04-21 10:24:47-- https://mail.google.com/mail/feed/atom
Resolving mail.google.com (mail.google.com)... Resolving mail.google.com (mail.google.com)... 172.217.172.69, 2800:3f0:4002:80d::2005
Connecting to mail.google.com (mail.google.com)|172.217.172.69|:443... 172.217.173.5, 2800:3f0:4002:80d::2005
Connecting to mail.google.com (mail.google.com)|172.217.173.5|:443... connected.
connected.
HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/xml]
Saving to: ‘STDOUT’
- [ <=> ] 340 --.-KB/s in 0s
2020-04-21 10:24:48 (9.60 MB/s) - written to stdout [340]
200 OK
Length: unspecified [text/xml]
Saving to: ‘STDOUT’
- [ <=> ] 3.76K --.-KB/s in 0s
2020-04-21 10:24:48 (7.84 MB/s) - written to stdout [3846]
$
Got them all running...
And I see this:
2020-04-21 10:23:18 (8.37 MB/s) - written to stdout [3846]
--2020-04-21 10:24:47-- https://mail.google.com/mail/feed/atom
--2020-04-21 10:24:47-- https://mail.google.com/mail/feed/atom
Resolving mail.google.com (mail.google.com)... Resolving mail.google.com (mail.google.com)... 172.217.172.69, 2800:3f0:4002:80d::2005
Connecting to mail.google.com (mail.google.com)|172.217.172.69|:443... 172.217.173.5, 2800:3f0:4002:80d::2005
Connecting to mail.google.com (mail.google.com)|172.217.173.5|:443... connected.
connected.
HTTP request sent, awaiting response... HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/xml]
Saving to: ‘STDOUT’
WTF!!! mail.google.com something is going to get cut and if means I loose a conky --- well I loose a conky.
Debian 12 Beardog, SoxDog and still a Conky 1.9er
Offline
Keep in mind I have been using the "current.sh" format forever - since my Ubuntu days.
"If it works, don't fix it"
What's wrong with "nested"?
Last edited by Sector11 (2020-04-21 13:35:35)
Debian 12 Beardog, SoxDog and still a Conky 1.9er
Offline
@John ....
Your original idea for the script: current_2.sh:Conky: window type - normal Conky: drawing to created window (0x1c00001) Conky: drawing to double buffer 100 25545 100 25545 0 0 78842 0 --:--:-- --:--:-- --:--:-- 79086 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 25640 100 25640 0 0 41827 0 --:--:-- --:--:-- --:--:-- 41758 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 30591 100 30591 0 0 47427 0 --:--:-- --:--:-- --:--:-- 47427 rm: cannot remove '/media/5/Conky/Accuweather_conky_script/altogether24': Is a directory rm: cannot remove '/media/5/Conky/Accuweather_conky_script/altogether24_2015': No such file or directory rm: cannot remove '/media/5/Conky/Accuweather_conky_script/altogether24_2016': No such file or directory /media/5/Conky/Accuweather_conky_script/accuweather: line 482: /media/5/Conky/Accuweather_conky_script
I thought this was just about starting up some conkys, but there's obviously a lot more going on. I think I'll stop making uninformed suggestions at this point...
Keep in mind I have been using the "current.sh" format forever - since my Ubuntu days.
"If it works, don't fix it"
True, that.
---
What's wrong with "nested"?
Do you mean my comment about "multiple wmctrl processes running in subshells"? If so, yes it does bother me. Damo knows wmctrl better than me, but running 'wmctrl -s 1' to me is saying "switch to desktop 1" and is an instruction to the whole X session. If that's so (not sure) then things like:
( wmctrl -s 1 && do_something ) &
( wmctrl -s 2 && do_something ) &
Would be starting two forked-off subshells, in one of which wmctrl is trying to switch the desktop to "1", and in the other to "2". Surely a clash will happen? It just happens that your code has all the wmctrl commands firing at a certain time (thanks to the sleeps) trying to switch to the same desktop, so no clash. Perhaps.
So I would have thought: use wmctrl once to go where you want to go, then do what you want to do, then sleep a bit if necessary for everything to settle down. Rinse and repeat.
But maybe, inside a subshell, then 'wmctrl -s' can apply only to processes started inside that subshell?? Really don't know. @damo?
...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
johnraff wrote:...
In future it might be cool if bl-conky-manager could handle conkys on different desktops like BLOB.I originally thought of adding per-desktop functionality, but found it tricky to implement at the time, so we went with what was working. As you say, the yad UI could get complicated.
It's OK for BLOB, because it's getting conkys that are running, and figuring out the desktop.
And conky-sessionfile then holds the desktop info, as a wmctrl -s <desktop> ... command, at least until it's overwritten by bl-conky-manager.
Maybe b-c-m could look inside the conky files, and only if a conky isn't sticky, and if a user chooses to run that conky, at that point put up a dialog to ask what desktop it should go on? It shouldn't be needed very often. But this can be left to post-release or maybe even Beryllium for that matter.
( Bullseye will be breathing down our necks soon enough. )
johnraff wrote:Quick question: Preferences>Conky>Conky Chooser launches bl-conky-manager with "BunsenLabs Conky Manager" as its title. Change the menu item to "Conky Manager" to match?
"Conky Manager" is fine with me, and "Tint2 Manager" needs adjusting as well in that case.
Good point.
...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
Sector11 wrote:Keep in mind I have been using the "current.sh" format forever - since my Ubuntu days.
"If it works, don't fix it"True, that.
John see this ... more coming and all GOOD NEWS!
Debian 12 Beardog, SoxDog and still a Conky 1.9er
Offline