as always: This is just a quick hack, use at your own risk!
What it is good for
This will display boxscores of your favorite Nba player on the the low power lock screen and update them on a daily basis.
What you will need:
Root Access (thanks to Nokia)
Cron (thanks to zeamoceq)
Python script to generate lock screen image (thanks to ejasmudar)
0 12 * * * cd /home/user/bin/; ./nbaboxscore.sh; /usr/bin/python lockscreentext.py
which will execute the two below scripts every day at 12 am.
3. Below is my slighty modified python script which i saved as
/home/user/bin/lockscreentext.py
Code:
#Lock Screen Test v 0.2
#By ejasmudar, slightly modfied by BluesLee, see TMO
#Reads first line from file and
#changes the operator logo.
#!/usr/bin/python
import os,random, textwrap
import Image, ImageDraw, ImageOps, ImageFont
import PIL
import gconf
############VARIABLES##############
###################################
FILENAME="/home/user/bin/lockscreen.txt"
#Enter just name of the file if in the current working directory or path of the file
FONT="NokiaPureText-Regular.ttf"
FONT_SIZE=25
FONT_COLOR = (255, 255, 255)
#Details of font used. Fontname required path if not present in current working directory.
WRAP_WIDTH=34
#No of charecters for word wrapping.
IMGWIDTH=450
IMGHEIGHT=80
#Boundary dimensions of the quote
##################################
#####END OF VARIABLE LIST#########
##################################
########CODE######################
########Reading Random Line#######
file = open(FILENAME,'r')
#Read first line of text
TEXT = file.readline()
########Writing to Image##########
font = ImageFont.truetype(FONT,FONT_SIZE)
text = TEXT.decode('utf-8')
(width, height) = font.getsize(text)
x=Image.new("RGBA", (IMGWIDTH,IMGHEIGHT),(0,0,0))
w, h = x.size
draw = ImageDraw.Draw(x)
#Text Wrapping
lines = textwrap.wrap(text, width=WRAP_WIDTH)
y_text = 0
for line in lines:
(width, height) = font.getsize(line)
draw.text(((w - width)/2, y_text), line, font=font, fill=FONT_COLOR)
y_text+=height
#Saving Image
x.save('/home/user/bin/.test.png')
###Setting Image as Operator Logo###
client = gconf.client_get_default()
client.set_string('/desktop/meego/screen_lock/low_power_mode/operator_logo', '/home/user/bin/.test1.png')
client.set_string('/desktop/meego/screen_lock/low_power_mode/operator_logo', '/home/user/bin/.test.png')
Please see http://talk.maemo.org/showthread.php?t=81443 for details. You will need to enable operator logo, install python, python-image and python-gconf to get this working. You will need to copy
NokiaPureText-Regular.ttf to /home/user/bin/.
4. This is my shell script which i saved as
/home/user/bin/nbaboxscore.sh:
Code:
#!/bin/sh
# BluesLee@tmo
FAV_PLAYER="enes_kanter"
#FAV_PLAYER="dwight_howard"
WORKING_DIR=/home/user/bin/
OUTPUTFILE=$WORKING_DIR/lockscreen.txt
cd $WORKING_DIR
stat(){
echo "$1 `sed -n ${2}p < index.html | cut -d ">" -f "2,2" | cut -d "<" -f"1,1"`" >> $FAV_PLAYER.txt
}
# .. get index file with stats of $FAV_PLAYER ..
wget -S --random-wait -o wget.log http://www.nba.com/playerfile/$FAV_PLAYER/index.html
# .. cut last game stats of $FAV_PLAYER ..
sed -e "1,/gamesSubHeader/d" index.html | sed -e "1,4d" | sed -e "15,$ d" > temp.html
cp temp.html index.html
head -1 index.html | cut -d "/" -f"4,4" > $FAV_PLAYER.txt
head -1 index.html | cut -d ">" -f"3,3" | cut -d "<" -f"1,1" >> $FAV_PLAYER.txt
# .. select relevant game stats ..
stat MIN 2;
stat FGMA 3;
#stat 3PM-A 4;
#stat FTM-A 5;
#stat OFF 6;
#stat DEF 7;
stat REB 8;
stat AST 9;
#stat STL 10;
#stat BLK 11;
#stat TO 12;
#stat PF 13;
stat PTS 14
# .. join all output lines to one ..
tr -d ' ' < $FAV_PLAYER.txt > index.html
tr '\n' ' ' < index.html > $FAV_PLAYER.txt
echo >> $FAV_PLAYER.txt
# .. generate output file ..
cp -p $FAV_PLAYER.txt $OUTPUTFILE
# .. cleanup ..
rm -f index.html temp.html wget.log $FAV_PLAYER.txt
Comments
Note that root has to have write access to /home/user/bin/ and also execution rights on the mentioned files.
You are free to modify the shell script for your needs. For instance you can hold a list of players and pick a random one and display those scores every 10 minutes with crontab.
as always: This is just a quick hack, use at your own risk!
What it is good for
This will display boxscores of your favorite Nba player on the the low power lock screen and update them on a daily basis.
What you will need:
Details
1. No comment.
2. Install crontab from here: http://forum.meego.com/showthread.ph...highlight=cron
Please note that this seems only to work for root, i.e. we have to handle access rights for files afterwards.Use
3. Below is my slighty modified python script which i saved as
/home/user/bin/lockscreentext.py
NokiaPureText-Regular.ttf to /home/user/bin/.
4. This is my shell script which i saved as
/home/user/bin/nbaboxscore.sh:
Note that root has to have write access to /home/user/bin/ and also execution rights on the mentioned files.
You are free to modify the shell script for your needs. For instance you can hold a list of players and pick a random one and display those scores every 10 minutes with crontab.
Screenshot:
Last edited by BluesLee; 2012-01-14 at 15:21.