; now_playing.ini ; ; A Rainmeter config to display iTunes current track info, ; in conjunction with rainmeter-itunes.vbs ; ; Copyright 2009, Marc Stewart ; http://www.obfuscatepenguin.net/code/2009/03/27/rainmeter-itunes/ ; ==== LICENCE ========================================================= ; This program is free software: you can redistribute it and/or modify ; it under the terms of the GNU General Public License as published by ; the Free Software Foundation, either version 3 of the License, or ; (at your option) any later version. ; ; This program is distributed in the hope that it will be useful, ; but WITHOUT ANY WARRANTY; without even the implied warranty of ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ; GNU General Public License for more details. ; ; You should have received a copy of the GNU General Public License ; along with this program. If not, see . ; ========================================================= LICENCE ==== [Rainmeter] Author=http://www.obfuscatepenguin.net/code/2009/03/27/rainmeter-itunes/ Update=1000 BackgroundMode=1 ; ==== VARIABLES ======================================================= [Variables] TrackInfoFile=D:\rainmeter_itunes_playing.txt LabelText="Now playing:" Width=300 Height=300 TrackInfoHorizontalOffset=10 TrackInfoVerticalOffset=20 ; ======================================================= VARIABLES ==== ; ==== MEASURE ========================================================= [MeasureTrackInfo] Measure=Plugin Plugin=Plugins\QuotePlugin.dll PathName=#TrackInfoFile# Separator=\n ; ========================================================= MEASURE ==== ; ==== METERS ========================================================== [LabelNowPlaying] Meter=STRING Text=#LabelText# X=0 Y=0 FontColor=255,255,255,255 FontFace=Tahoma FontSize=12 StringAlign=LEFT StringStyle=NORMAL AntiAlias=1 [TrackInfo] Meter=STRING MeasureName=MeasureTrackInfo X=#TrackInfoHorizontalOffset# Y=#TrackInfoVerticalOffset# W=#Width# H=#Height# FontColor=255,255,255,255 FontFace=Tahoma FontSize=12 StringAlign=LEFT StringStyle=NORMAL AntiAlias=1 ClipString=1 ; ========================================================== METERS ====