Alright, I've gotten some messages from people interested in mine, so here goes.
It's mainly based off other ones from this thread >_>

Components Needed:
foo_browser
foo_ui_single_column_playlist
foo_uie_trackinfo
foo_playcount
and for the "Now Playing" popup, foo_prettypop (for this you need .NET Framework 2.0)
Calibri font is needed, and you can download it
here.
The images used are
here. They must be put in C:\Program Files\foobar2000\images
My FCSPretty basic layout:

Here's the code for trackinfo:
CODE
$if(%_trackinfo_notrack%,No track,
------------------------------------------------------------------------------------------$char(10)
$char(1)CAbout This Song:$char(10)
Artist: fffad8%artist%$char(10)
Title: fffad8%title%$char(10)
Genre: fffad8%genre%$char(10)
Time: fffad8$if(%_isplaying%,%_time_elapsed% '/' )%_length%$char(10)
Track Number: fffad8$num(%tracknumber%,1)$char(10)
Album: fffad8$if3(%album%,still unknown))$char(10)
Release Date: fffad8$if3(%date%,Unavailable)$char(10)
$puts(half_length,$div(%_length_seconds%,2))
$ifgreater($get(half_length),%_time_remaining_seconds%,AudioScrobbled:fffad8 Yes ,AudioScrobbled:fffad8 No )$char(10)
------------------------------------------------------------------------------------------$char(10)
$char(1)CTechnical:$char(10)
$char()Codec: fffad8%__codec%
$char(10)Bitrate: fffad8%__bitrate% Kbit/s$char(10)
$if(%__lame_version%,$char(1)C$get(head)Preset:fffad8 $get(info)$left(%__lame_version%,4) $right(%__lame_version%,4)
[$upper(%__lame_profile%)]$char(10),)
$if(%__flac_vendor%,$char(1)C$get(head)Encoder:fffad8 $get(info)$if($stricmp(%__flac_vendor%,reference libFLAC 1.1.2
20050205),FLAC 1.1.2 -8)$char(10),)
$if(%__mpc_profile%,$char(1)C$get(head)MPC Profile:fffad8 $get(info)%__mpc_profile%$char(10),)
$char(1)C$get(head)Compression:fffad8 $get(info)$div(1411,%__bitrate%).$substr($muldiv(1411,100,%__bitrate%),2,3):1
'('$get(info)$muldiv(%__bitrate%,100,1411)$get(anno)'%)'$char(10)
$char(1)C$get(head)Channels:fffad8 $get(info)$if($stricmp($codec(),MP3),$get(space2)$caps(%__mp3_stereo_mode%),
$if(%__channels%,$ifgreater(%__channels%,1,Stereo,Mono),'?'))$char(10)
$if(%__bitspersample%,$char(1)C$get(head)Bitdepth: $get(info)%__bitspersample%$char(10),)
$if(%__samplerate%,$char(1)C$get(head)Samplerate:fffad8 $get(info)$div(%__samplerate%,1000).$substr(%__samplerate%,3,3) KHz
$char(10))
------------------------------------------------------------------------------------------$char(10)
$char(1)CStatistics:$char(10)
This song has been played fffad8%play_counter% times. $char(10)
------------------------------------------------------------------------------------------$char(10)
Playlist coding:
Row Height: 18
Group Rows: 5
Edgestyle: None
Group by: %album%
Item Display:
CODE
$imageabs(3,0,'images\bg1.png',)
$ifequal($mod(%tracknumber%,2),0,
$drawrect(0,0,0,0,brushcolor-0-0-0 pencolor-null)
,
$drawrect(0,0,0,0,brushcolor-20-20-20 pencolor-null)
)
$padding(2,0)
$if(%_isplaying%,$font(calibri,8,bold glow-129-138-150 glowblur-10,255-255-255),$font(calibri,8,bold,164-171-179))
$alignabs(4,0,%_width%,21,left,top)↘
$if(%_isplaying%,$font(calibri,8,bold glow-129-138-150 glowblur-10,255-255-255),$font(calibri,8,bold,180-180-180))
[%tracknumber%. ]
$if(%_isplaying%,$font(calibri,8,bold glow-129-138-150 glowblur-10,255-255-255),$font(calibri,8,bold,129-138-150))
$if($meta_test(album artist),)
$if(%_isplaying%,$font(calibri,8,bold glow-129-138-150 glowblur-10,255-255-255),$font(calibri,8,bold,120-120-120))
%title%
$if(%_isplaying%,$font(calibri,8,bold glow-129-138-150 glowblur-10,255-255-255),$font(calibri,8,bold,180-180-180))
$align(right,center)%length%
//$drawrect(0,0,1,0,brushcolor-161-170-179 pencolor-null)
//$drawrect(1,0,3,0,brushcolor-222-225-228 pencolor-null)
Group Display:
CODE
$font(cambria,12,bold,164-171-179)
$drawrect(0,0,0,0,brushcolor-120-120-120 pencolor-null)
$imageabs2(84,84,,,,,5,3,'C:\Program Files\foobar2000\images\noalbum.png',)
$imageabs2(84,84,,,,,5,3,$replace(%path%,%filename_ext%,)folder.png,)
$imageabs2(84,84,,,,,5,3,$replace(%path%,%filename_ext%,)folder.jpg,)
$imageabs2(84,84,,,,,5,3,$replace(%path%,%filename_ext%,)%album%.jpg,)
$imageabs2(84,84,,,,,5,3,$replace(%path%,%filename_ext%,)*.jpg,)
$imageabs2(84,84,,,,,5,3,$replace(%path%,%filename_ext%,)*/*.*,)$imageabs2(84,84,,,,,5,3,'C:\Program Files\foobar2000\images\artoverlay.png',)
$alignabs(92,40,$add(%_width%,-107),20,left,top)
$lower($if2(%album artist%,%artist%))
$alignabs(92,55,$add(%_width%,-107),20,left,top)
$font(Swis721 Cn BT D-Type,14,,138-145-153)
%album%$font(Swis721 Cn BT D-Type,14,bold,120-120-120)
$alignabs(92,71,$add(%_width%,-107),20,left,top)
$font(calibri,9,bold,153-153-153)[$upper(%genre%)]
[$upper( %date%)]
Please let me know if I've left anything out... I'm a nub like that.
Also, thanks to tool++ for the base of my layout.
c: