hideout10uk
Member
/usr/share/enigma2/screens/slyk1-hd/skyicons folder is present with all images including the toppicks 1-6 yes
Sent from my SM-A500FU using Tapatalk
Sent from my SM-A500FU using Tapatalk
Cron manager running with correct path /usr/bin/python /usr/var/etc/toppicks.py
When telnet in and inputting same comes up invalid syntax line 1
![]()
Sent from my SM-A500FU using Tapatalk
import urllibimport urllib2urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/toppicks1.png", "/usr/share/enigma2/slyk-1-hd/skyicons/toppicks1.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/toppicks2.png", "/usr/share/enigma2/slyk-1-hd/skyicons/toppicks2.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/toppicks3.png", "/usr/share/enigma2/slyk-1-hd/skyicons/toppicks3.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/toppicks4.png", "/usr/share/enigma2/slyk-1-hd/skyicons/toppicks4.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/toppicks5.png", "/usr/share/enigma2/slyk-1-hd/skyicons/toppicks5.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/toppicks6.png", "/usr/share/enigma2/slyk-1-hd/skyicons/toppicks6.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/sky cinema.png", "/usr/share/enigma2/slyk-1-hd/skyicons/sky cinema.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/skystore.png", "/usr/share/enigma2/slyk-1-hd/skyicons/skystore.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/boxsets.png", "/usr/share/enigma2/slyk-1-hd/skyicons/boxsets.png")
am I missing something here. I don't get this.
looking at your github. you just seem to be bringing in 6 top picks pngs. Grant is going to manual update these 6 images, which then replace the ones in your box.
Where is the automation. And why can't users just replace the images themselves.
---------- Post Merged at 09:51 PM ----------
surely the better option is to create loads of top pix graphics upload them to github, and then randomise them in the script. none of this making one guy update them daily thing.
Will have to try and get a new file and see if that works as it does seem the file I have has more info in than thatCron manager running with correct path /usr/bin/python /usr/var/etc/toppicks.py
When telnet in and inputting same comes up invalid syntax line 1
![]()
Sent from my SM-A500FU using Tapatalk
your toppicks.py has some unwanted content in it.. the entire contents of the file should be
Code:import urllibimport urllib2urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/toppicks1.png", "/usr/share/enigma2/slyk-1-hd/skyicons/toppicks1.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/toppicks2.png", "/usr/share/enigma2/slyk-1-hd/skyicons/toppicks2.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/toppicks3.png", "/usr/share/enigma2/slyk-1-hd/skyicons/toppicks3.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/toppicks4.png", "/usr/share/enigma2/slyk-1-hd/skyicons/toppicks4.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/toppicks5.png", "/usr/share/enigma2/slyk-1-hd/skyicons/toppicks5.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/toppicks6.png", "/usr/share/enigma2/slyk-1-hd/skyicons/toppicks6.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/sky cinema.png", "/usr/share/enigma2/slyk-1-hd/skyicons/sky cinema.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/skystore.png", "/usr/share/enigma2/slyk-1-hd/skyicons/skystore.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/boxsets.png", "/usr/share/enigma2/slyk-1-hd/skyicons/boxsets.png")
Update : correct toppicks.py file done and re ran plugin I created and job done it works still have cron timer on too but saves manually telnet login so ran plugin instead which worksWill have to try and get a new file and see if that works as it does seem the file I have has more info in than thatCron manager running with correct path /usr/bin/python /usr/var/etc/toppicks.py
When telnet in and inputting same comes up invalid syntax line 1
![]()
Sent from my SM-A500FU using Tapatalk
your toppicks.py has some unwanted content in it.. the entire contents of the file should be
Code:import urllibimport urllib2urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/toppicks1.png", "/usr/share/enigma2/slyk-1-hd/skyicons/toppicks1.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/toppicks2.png", "/usr/share/enigma2/slyk-1-hd/skyicons/toppicks2.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/toppicks3.png", "/usr/share/enigma2/slyk-1-hd/skyicons/toppicks3.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/toppicks4.png", "/usr/share/enigma2/slyk-1-hd/skyicons/toppicks4.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/toppicks5.png", "/usr/share/enigma2/slyk-1-hd/skyicons/toppicks5.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/toppicks6.png", "/usr/share/enigma2/slyk-1-hd/skyicons/toppicks6.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/sky cinema.png", "/usr/share/enigma2/slyk-1-hd/skyicons/sky cinema.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/skystore.png", "/usr/share/enigma2/slyk-1-hd/skyicons/skystore.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/boxsets.png", "/usr/share/enigma2/slyk-1-hd/skyicons/boxsets.png")
Sent from my SM-A500FU using Tapatalk
Hi guys can someone give me a simple run down how to add this to slyk skin v5 i have most mods done but not sure where to add what and where to start any help would be greatly appreciated
Sent from my SM-G900F using Tapatalk
Update : correct toppicks.py file done and re ran plugin I created and job done it works still have cron timer on too but saves manually telnet login so ran plugin instead which worksWill have to try and get a new file and see if that works as it does seem the file I have has more info in than thatCron manager running with correct path /usr/bin/python /usr/var/etc/toppicks.py
When telnet in and inputting same comes up invalid syntax line 1
![]()
Sent from my SM-A500FU using Tapatalk
your toppicks.py has some unwanted content in it.. the entire contents of the file should be
Code:import urllibimport urllib2urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/toppicks1.png", "/usr/share/enigma2/slyk-1-hd/skyicons/toppicks1.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/toppicks2.png", "/usr/share/enigma2/slyk-1-hd/skyicons/toppicks2.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/toppicks3.png", "/usr/share/enigma2/slyk-1-hd/skyicons/toppicks3.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/toppicks4.png", "/usr/share/enigma2/slyk-1-hd/skyicons/toppicks4.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/toppicks5.png", "/usr/share/enigma2/slyk-1-hd/skyicons/toppicks5.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/toppicks6.png", "/usr/share/enigma2/slyk-1-hd/skyicons/toppicks6.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/sky cinema.png", "/usr/share/enigma2/slyk-1-hd/skyicons/sky cinema.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/skystore.png", "/usr/share/enigma2/slyk-1-hd/skyicons/skystore.png")urllib.urlretrieve("https://raw.githubusercontent.com/danmed/toppicks/master/boxsets.png", "/usr/share/enigma2/slyk-1-hd/skyicons/boxsets.png")
Sent from my SM-A500FU using Tapatalk
Sent from my SM-A500FU using Tapatalk
Update : correct toppicks.py file done and re ran plugin I created and job done it works still have cron timer on too but saves manually telnet login so ran plugin instead which works
Both reallyHi guys can someone give me a simple run down how to add this to slyk skin v5 i have most mods done but not sure where to add what and where to start any help would be greatly appreciated
Sent from my SM-G900F using Tapatalk
Which bit are you referring to? The screen itself or the "automatic" pictures?
@grantdavey91
I have just made it easy for you mate.
amended the epg.xml
use the <screen name="GraphicalEPGPIG2">
I have added all that you have requested in there...
just make sure you have all the png files I sent you in the correct location...
Hope it works for you..
@grantdavey91
I have just made it easy for you mate.
amended the epg.xml
use the <screen name="GraphicalEPGPIG2">
I have added all that you have requested in there...
just make sure you have all the png files I sent you in the correct location...
Hope it works for you..
Hey Chabs,
Gave this a try, but not getting the tabs on EPG now, are you using a different EPGSelection.py file?
View attachment 19590
@grantdavey91
I have just made it easy for you mate.
amended the epg.xml
use the <screen name="GraphicalEPGPIG2">
I have added all that you have requested in there...
just make sure you have all the png files I sent you in the correct location...
Hope it works for you..
Hey Chabs,
Gave this a try, but not getting the tabs on EPG now, are you using a different EPGSelection.py file?
View attachment 19590
no mate...I think its the layer depth position...its an easy fit
It seems you using the yellow tab so that should be adjusted too...
let me sort it out...
Yes I will share now, it saves using cron timer or can be used in conjunction with it ie force updateUpdate : correct toppicks.py file done and re ran plugin I created and job done it works still have cron timer on too but saves manually telnet login so ran plugin instead which works
You've made a plugin for this?
Yes I will share now, it saves using cron timer or can be used in conjunction with it ie force updateUpdate : correct toppicks.py file done and re ran plugin I created and job done it works still have cron timer on too but saves manually telnet login so ran plugin instead which works
You've made a plugin for this?
Sent from my SM-A500FU using Tapatalk