2011-11-03, 23:40
love the new icons dejavu, thanks.
can't wait for new modules
can't wait for new modules
git clone https://github.com/mrkipling/maraschino.git /home/xbmc/.maraschino
if __name__ == '__main__':
app.run(debug=True)
if __name__ == '__main__':
app.run(debug=True,port=5050,host='0.0.0.0')
sudo nano /etc/init.d/maraschino
#! /bin/sh
# Username required and must be changed to suit!
USER="xbmc"
#Script -- No changes needed below.
case "$1" in
start)
#Start marashino
cd /home/$USER/.maraschino
echo "Starting Marashino"
sudo python /home/$USER/.maraschino/htpcfrontend.py -q
;;
*)
echo "Usage: $0 {start}"
exit 1
esac
exit 0
sudo chmod +x /etc/init.d/maraschino
sudo update-rc.d maraschino defaults
sudo /etc/init.d/maraschino start
DejaVu Wrote:This is seriously impressive! I too have been using/editing/struggling with Mediafrontpage to the point of giving up.
I thought the JSON RPC API changes would be its death, but see this as its replacement.
steve1977 Wrote:The end of MFP?I hope not, but this undoubtedly is a great replacement - just get gugahoi's search widget in this and MFP will be obsolete.
HarryRosen Wrote:when I try to run this command it doesn't work
sudo update-rc.d sickbeard defaults
but I am assuming it's because I don't run sickbeard on this machines, is there a different cmd I can use?
rflores2323 Wrote:I was wondering if there was a way to get this to work on an android tablet? This would be awesome to have as I use my tablet to control xbmc and it would be great for the wife to have these widgets on a screen to download movies, tvshows, check trakt, etc...
DejaVu Wrote:I hope not, but this undoubtedly is a great replacement - just get gugahoi's search widget in this and MFP will be obsolete.
MFP's code got huge and quite messy to be honest and I was struggling to keep up with it.
The JSON RPC API changes, and me trying to understand them, is what is slowly killing it off. Just hope someone with a little knowledge of it can jump on-board and repair it. It's all it really needs.
Maraschino's initial framework made by mrkipling is organised, easy to understand and once a little documentation comes to light, I think personally, this will be a lot better and easier to code (I'm already giving it a good forking.)
DejaVu Wrote:I now have maraschino/htpcfrontend auto loading if anyone is interested.
It's ugly, but it works if anyone is interested. It means that the installation instructions are going to need to change though...