Columns UI / Panels UI appearance |
Columns UI / Panels UI appearance |
Mar 29 2006, 09:58
Post
#1
|
|
|
Group: Members Posts: 132 Joined: 23-December 05 From: Seattle, WA Member No.: 26598 |
I thought I'd start a new "post your foobar" thread, as the original one is almost 120 pages long. Same rules apply here, plus a couple more:
That being said, I'll start things off: ![]() I posted the hybrid-mode of my playlist style. You can see regular albums, VA albums, and singles in the same playlist w/o screwy formatting. I have album list auto-hidden on the left side of the window, and it expands to about the same width as the track info and album art panels. I also use pretty popup, but I didn't include it in the picture because my configuration for that is a bit ugly right now. Anyway, enjoy. Feel free to ask any questions or request any files. |
|
|
|
![]() |
Mar 29 2006, 11:30
Post
#2
|
|
|
Group: Members Posts: 132 Joined: 23-December 05 From: Seattle, WA Member No.: 26598 |
Let's see...
It uses the latest albumart panel version, and trackinfo panel. The VS is called "Spirit". Trackinfo code: CODE // Original code by necropimp, then modified by AstreaEdge, and again by KockRoach // Habla likes things his way, and modified it more. // Best viewed with vert pad 10, hor pad 8, line space 3, Calibri 8pt bold font, black background // lots of info needs lots of space 8) // !!!!BEGIN USER CONFIGURATION!!!! // Show Artist? (1 = show, 0 = don't show) $puts(arts,1) // Show Album? $puts(albs,1) // Show Title? $puts(tils,1) // Info Heading Color e.g. "Title:" $puts(head,c9c9c9) // Info Color, e.g. "Black Dog" $puts(info,FFFFFF) // Info Annotation Color (e.g. "kbps" is the annotation) $puts(anno,FFFFFF) // Separator $puts(text2,FFFFFF) $puts(text1,0000FF) $puts(fadeend,000000) $puts(seplen,53) $puts(sepchar,'-') //////////////////////////////////////////////// ////!!!END USER CONFIGURATION!!//// ////////////////////////////////////////////// // Day Conversion $puts(day,$substr(%last_played%,9,10)) $if(%last_played%, $if($strcmp($left($get(day),1),0),$puts(day,$right($get(day),1)))) $if($strcmp($get(day),11),$puts(xx,th), $if($strcmp($get(day),12),$puts(xx,th), $if($strcmp($get(day),13),$puts(xx,th), $if($strcmp($right($get(day),1),1),$puts(xx,st), $if($strcmp($right($get(day),1),2),$puts(xx,nd), $if($strcmp($right($get(day),1),3),$puts(xx,rd), $puts(xx,th))))))) // Month Conversion $puts(month,$substr(%last_played%,6,7)) $puts(month_name,$select($get(month), Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec)) // Year Conversion $puts(year,$substr(%last_played%,1,4)) // Time Conversion $puts(hour,$substr(%last_played%,12,13)) $puts(min,$substr(%last_played%,14,16)) $puts(sec,$substr(%last_played%,17,19)) // 24 Hour to 12 Hour Conversion $if($strcmp($left($get(hour),1),0),$puts(hour1,$right($get(hour),1))) $if($strcmp($left($get(hour),1),1),$puts(hour1,$sub($get(hour),12))) $if($strcmp($left($get(hour),1),2),$puts(hour1,$sub($get(hour),12))) $if($strcmp($get(hour),00),$puts(hour1,12)) $if($strcmp($get(hour),10),$puts(hour1,10)) $if($strcmp($get(hour),11),$puts(hour1,11)) $if($strcmp($get(hour),12),$puts(hour1,12)) // AM/PM Conversion $if($strcmp($get(hour),00),$puts(yy,am)) $if($strcmp($get(hour),10),$puts(yy,am)) $if($strcmp($get(hour),11),$puts(yy,am)) $if($strcmp($get(hour),12),$puts(yy,pm)) $if($strcmp($get(hour),24),$puts(yy,am)) $if($strcmp($left($get(hour),1),0),$puts(yy,am)) $if($strcmp($left($get(hour),1),1),$puts(yy,pm)) $if($strcmp($left($get(hour),1),2),$puts(yy,pm)) // Date Format $puts(time_of_year,$get(month_name) $get(day)$get(xx)',' $get(year)) // Time Format $puts(time_of_day,$get(hour1)$get(min)$get(sec) $get(yy)) // SONG INFO SEPARATOR $transition($repeat($get(sepchar),$get(seplen)),$get(fadeend),$get(text1))$get(text1)'[' $get(text2)S o n g I n f o $get(text1)']'$char(10) $if($strcmp(1,$get(arts)),$if(%artist%,$get(head)Artist: $get(info)%artist%$char(10),),) $if($strcmp(1,$get(albs)),$if(%album%,$get(head)Album: $get(info)$cut(%album%,37) $ifgreater($len(%album%),37,'...',)$char(10),),) $if($strcmp(1,$get(tils)),$if(%title%,$get(head)Title: $if(%title%,$get(info)$cut(%title%,45) $ifgreater($len(%title%),45,'...',))$char(10),$get(info)%_filename%$char(10)),) $if(%tracknumber%,$get(head)Track #: $get(info)%tracknumber%$char(10),) $if(%date%,$get(head)Date: $get(info)%date%$char(10),) $if(%genre%,$get(head)Genre: $get(info)%genre%$char(10),) // TECH INFO SEPARATOR $transition($repeat($get(sepchar),$get(seplen)),$get(fadeend),$get(text1))$get(text1)'[' $get(text2)T e c h I n f o $get(text1)']'$char(10) $get(head)Length: $get(info)$if(%_isplaying%,%_time_elapsed%$get(anno)$if(%_length%, / %_length%,)$if(%_time_elapsed%, / $muldiv(%_time_elapsed_seconds%,100,%_length_seconds%)'%')$if(%_length%, / -%_time_remaining%),%_length%)$char(10) $get(head)Quality: $if(%__codec%, $get(info)%__codec%) $get(info) $if2(%__bitrate_dynamic%,%__bitrate%) $get(anno)Kb/s $if($stricmp(%__codec%,mp3),$if($stricmp(%__extrainfo%,vbr),VBR,CBR)) $char(10) $if(%__lame_version%,$get(head)Encoder: $get(info)$left(%__lame_version%,4) $right(%__lame_version%,4) [$upper(%__lame_profile%)]$char(10),) $if(%__flac_vendor%,$get(head)Encoder: $get(info)$if($stricmp(%__flac_vendor%,reference libFLAC 1.1.2 20050205),FLAC 1.1.2 -8)$char(10),) $if(%__mpc_profile%,$get(head)MPC Profile: $get(info)%__mpc_profile%$char(10),) $get(head)Compression: $get(info)$div(1411,%__bitrate%).$substr($muldiv(1411,100,%__bitrate%),2,3):1 '('$get(info)$muldiv(%__bitrate%,100,1411)$get(anno)'% of original quality)'$char(10) $get(head)Channel Mode: $get(info)$if($stricmp($codec(),MP3),$get(space2)$caps(%__mp3_stereo_mode%), $if(%__channels%,$ifgreater(%__channels%,1,Stereo,Mono),'?'))$char(10) $if(%__bitspersample%,$get(head)Bitdepth: $get(info)%__bitspersample% bits/sample$char(10),) $if(%__samplerate%,$get(head)Samplerate: $get(info)$div(%__samplerate%,1000).$substr(%__samplerate%,3,3) KHz $char(10)) $if(%_filesize%,$get(head)Filesize: $get(info) $div(%_filesize%,1048576).$left($num($muldiv($mod(%_filesize%,1048576),100,1048576),2),2) $get(anno)'MB'$char(10),) $if(%last_played%, // PLAY STATS SEPARATOR $transition($repeat($get(sepchar),$get(seplen)),$get(fadeend),$get(text1))$get(text1)'[' $get(text2)P l a y S t a t s $get(text1)']'$char(10),) $if(%play_count%,$get(head)Played $get(info)%play_count% times total$char(10),) $if(%last_played%,$get(head)Last played on $get(info)$get(time_of_year) at $get(time_of_day)$char(10),) $get(head)Focus: $get(info)$if(%_trackinfo_nowplaying%,$if(%_ispaused%,Current Song '0000FF[Paused]',Current Song),Follow Cursor$if(%_ispaused%,0000FF' [Paused]'))$char(10) $if(%_isplaying%,$get(head)o$progress(%_time_elapsed_seconds%, %_time_total_seconds%,72,$get(info)'::',$get(text1)'-')$get(head)o) Playlist style: http://rapidshare.de/files/16696941/blackwhitered.fcs.html I want to find some new buttons... This post has been edited by Habla: Mar 29 2006, 11:30 |
|
|
|
Habla Columns UI / Panels UI appearance Mar 29 2006, 09:58
David Nordin QUOTE (Habla @ Mar 29 2006, 09:58 AM)I though... Mar 29 2006, 11:14
Raja Though I tend to like my foobar a little more mini... Mar 29 2006, 11:18
Sphix QUOTE (Habla @ Mar 29 2006, 04:30 AM)Trackinf... Mar 29 2006, 21:07
patchu what font are used in this track info ? Mar 29 2006, 14:12
Farpenoodle Wow. That first one's really cool. Here is my ... Mar 29 2006, 15:08
auldyin Hi,
I really dont have a clue about this stuff but... Mar 29 2006, 15:21
MechaA Crossposted in the main thread recently, where req... Mar 29 2006, 15:17
Habla Patchu, the font is Calibri 8pt bold. It notes tha... Mar 29 2006, 16:53
MechaA QUOTE (Habla @ Mar 29 2006, 09:53 AM)Patchu, ... Mar 29 2006, 19:25
TedFromAccounting Here's mine, nothing too fancy. Just started ... Mar 29 2006, 16:55
Eli It would be nice if everyone could post their conf... Mar 29 2006, 16:57
Habla You mean instead of waiting for people to ask for ... Mar 29 2006, 17:02
DeepDose Hey all first time showing my setup....zoom in for... Mar 29 2006, 17:27
nightwingz QUOTE (DeepDose @ Mar 29 2006, 11:27 AM)
Hey... Apr 1 2006, 03:31
c.rystal And with the matching visual style:
Modified o... Mar 29 2006, 20:09
Bob... Just Bob QUOTE (c.rystal @ Mar 29 2006, 11:09 AM)
Two... Mar 29 2006, 21:49

c.rystal QUOTE (Bob... Just Bob @ Mar 29 2006, 09:49 P... Mar 30 2006, 06:54

Jayphen QUOTE (c.rystal @ Mar 30 2006, 03:54 PM)QUOTE... Mar 30 2006, 08:29

Habla QUOTE (c.rystal @ Mar 29 2006, 09:54 PM)The c... Mar 30 2006, 08:34

manudevil QUOTE (c.rystal @ Mar 29 2006, 09:54 PM)QUOTE... Mar 30 2006, 18:15
Nordland QUOTE (c.rystal @ Mar 29 2006, 09:09 PM)
An... Mar 31 2006, 16:17
mackycorp QUOTE (Nordland @ Mar 31 2006, 09:17 AM)QUOTE... Mar 31 2006, 19:33
2Pacalypse Habla that is a great looking foobar. What are all... Mar 29 2006, 20:10
Highlander QUOTE (2Pacalypse @ Mar 29 2006, 11:10 AM)Hab... Mar 29 2006, 21:31
lav-chan I'm still playing with mine, i don't know ... Mar 29 2006, 22:23
Bob... Just Bob What Calibri settings do you use? Mine seems to lo... Mar 29 2006, 23:03
Habla QUOTE (Highlander @ Mar 29 2006, 12:31 PM)QUO... Mar 29 2006, 23:10
lav-chan Umm. Regular (non-bold), size 8 for everything exc... Mar 29 2006, 23:12
Bob... Just Bob Oh god, how have I lived without ClearType for all... Mar 29 2006, 23:33
MechaA QUOTE (Bob... Just Bob @ Mar 29 2006, 04:33 P... Mar 29 2006, 23:55
Habla Hah, I was right. Wow. Thats a surprise.
Carry on... Mar 30 2006, 00:04
ev0| Umm, how do you guys get the album art to be norma... Mar 30 2006, 01:21
unabatedshagie QUOTE (ev0| @ Mar 30 2006, 01:21 AM)Umm, how ... Mar 30 2006, 06:06
Bryanhoop Mine, updated today: Mar 30 2006, 03:31
skelly831 My new dark style:
quite a departure from my pr... Mar 30 2006, 07:13
lav-chan Those are the two best-looking fonts ever, i think... Mar 30 2006, 08:14
Jayphen eh, wanna change the colours but couldn't be b... Mar 30 2006, 08:28
Jayphen Decided to completely change it.. Mar 30 2006, 10:46
turzol Here's mine. Mar 30 2006, 11:41
The Seeker QUOTE (turzol @ Mar 30 2006, 09:11 PM)Here... Mar 30 2006, 15:44
UObean Well I took Habla's setup and sort of stripped... Mar 30 2006, 15:52
Insolent RE: Columns UI / Panels UI appearance Mar 30 2006, 11:57
Jayphen QUOTE (Insolent @ Mar 30 2006, 08:57 PM)
Ni... Mar 30 2006, 12:02
Jayphen Just made a compact version of my new config. I th... Mar 30 2006, 12:01
Funeral RE: Columns UI / Panels UI appearance Mar 30 2006, 13:09
Vaxis Just a quick question: how do I put all those pane... Mar 30 2006, 13:20
unabatedshagie QUOTE (Vaxis @ Mar 30 2006, 01:20 PM)Just a q... Mar 30 2006, 16:38
SpaceChief QUOTE (Vaxis @ Mar 30 2006, 04:20 AM)Just a q... Mar 31 2006, 05:29
Tiis Conversation of my 0.8.3, also with flashing Track... Mar 30 2006, 13:23
j conky QUOTE (Tiis @ Mar 30 2006, 06:23 AM)Conversat... Mar 30 2006, 16:46
Tiis QUOTE (j conky @ Mar 30 2006, 04:46 PM)QUOTE ... Mar 30 2006, 18:42
c.rystal QUOTE (Jayphen @ Mar 30 2006, 08:29 AM)How di... Mar 30 2006, 15:24
Masahiko http://img75.imageshack.us/img75/622/snap0011za.jp... Mar 30 2006, 16:00
muenstereifel QUOTE (UObean @ Mar 30 2006, 04:52 PM)Well I ... Mar 30 2006, 17:20
UObean QUOTE (muenstereifel @ Mar 30 2006, 09:20 AM)... Mar 31 2006, 04:51
mazy added 2nd and 3rd track info panel ... Mar 30 2006, 18:39
Jayphen QUOTE (mazy @ Mar 31 2006, 03:39 AM)added 2nd... Mar 31 2006, 00:25
Bob... Just Bob QUOTE (Jayphen @ Mar 30 2006, 03:25 PM)QUOTE ... Mar 31 2006, 01:42

Jayphen QUOTE (Bob... Just Bob @ Mar 31 2006, 10:42 A... Mar 31 2006, 02:14
mazy QUOTE (Jayphen @ Mar 31 2006, 12:25 AM)How di... Mar 31 2006, 12:02
Rostvertol-Mil This is my config. Its based on habla's setup,... Mar 30 2006, 18:40
vonmeth Great setups everyone =)
Just had a question thou... Mar 30 2006, 22:49
Habla Nice mod, UOBean!
Looks good. I could mod my ... Mar 30 2006, 22:56
Tiis QUOTE (Habla @ Mar 30 2006, 10:56 PM)Tiis, wh... Mar 31 2006, 07:34
takt QUOTE (Tiis @ Mar 30 2006, 10:34 PM)QUOTE (Ha... Mar 31 2006, 07:40
Tiis QUOTE (takt @ Mar 31 2006, 07:40 AM)QUOTE (Ti... Mar 31 2006, 15:03
hotzenpl0tz @turzol: that looks great, mind sharing the fcs an... Mar 30 2006, 22:57
Chri5peed Is there a way to remove the fugly grey surrounds,... Mar 31 2006, 00:22
larskl works fine with multi and single artist albums
fc... Mar 31 2006, 01:16
mackycorp http://www.mackycorp.org/pics/foo_setup.png
Nothi... Mar 31 2006, 01:55
Jayphen QUOTE (mackycorp @ Mar 31 2006, 10:55 AM)I go... Mar 31 2006, 02:15
Glass Mine is here:
1280x1024 res screenshot
sorry for ... Mar 31 2006, 02:46
chiwou mine Mar 31 2006, 03:04
EastMushu Sorry guys if this is off-topic but could someone ... Mar 31 2006, 03:09
lav-chan In the Columns UI Layout tab you have to specifica... Mar 31 2006, 03:14
skyhopper88 I'm rather proud of this. Think I'm finall... Mar 31 2006, 04:42
lextune http://img87.imageshack.us/img87/3056/capt...pm330... Mar 31 2006, 05:01
m-z Old
EDIT: some small changes... Mar 31 2006, 09:47
dBaines RE: Columns UI / Panels UI appearance Mar 31 2006, 10:18
Fungo QUOTE (dBaines @ Mar 31 2006, 11:18 AM)
how... Mar 31 2006, 10:31
dBaines QUOTE (Fungo @ Mar 31 2006, 07:01 PM)QUOTE (d... Mar 31 2006, 10:39
fusion QUOTE (skelly831 @ Mar 30 2006, 12:13 AM)
Hy... Mar 31 2006, 12:49
gamegod I wanna foo_uie_albumart.dll
But I don't find... Mar 31 2006, 13:08
gamegod I can't download foo_uie_albumart.dll from
htt... Mar 31 2006, 13:11
2Pacalypse im going insane, cant find the check box to put th... Mar 31 2006, 14:17
lav-chan QUOTE (lav-chan @ Mar 30 2006, 06:14 PM)... Mar 31 2006, 14:27
C00I90WN Here it is, this is my current config, I made it f... Mar 31 2006, 18:22
bidz Keeping it clean and simple Mar 31 2006, 19:05
m-z I'm finally happy with my new foobar. Mar 31 2006, 19:37
Glass QUOTE (m-z @ Mar 31 2006, 12:37 PM)I... Apr 1 2006, 00:49
lav-chan I'm sure it's just a column with a backgro... Apr 1 2006, 00:52
Glass QUOTE (lav-chan @ Mar 31 2006, 05:52 PM)... Apr 1 2006, 00:57
nightwingz here is mine....
I have a few questions tho, 1.... Apr 1 2006, 03:00
lav-chan 1. Depends on your visual style.
2. foo_uie_track... Apr 1 2006, 03:19
nightwingz QUOTE (lav-chan @ Mar 31 2006, 09:19 PM)... Apr 1 2006, 03:26
foosion FCS (Note: Right-click -> Save as doesn't w... Apr 1 2006, 12:32
lav-chan curious indeed Apr 1 2006, 13:35
Nova5000 I get 'Invalid File' when loading yours, f... Apr 1 2006, 13:38![]() ![]() |
|
Lo-Fi Version | Time is now: 20th May 2013 - 08:39 |