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:14
Post
#2
|
|
|
Group: Members Posts: 751 Joined: 1-October 01 From: Falkenberg Member No.: 3810 |
QUOTE (Habla @ Mar 29 2006, 09:58 AM) 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. That's dead sexy imo, I must have the details for this links to components etc etc. -------------------- http://davidnordin.wordpress.com/
|
|
|
|
Mar 29 2006, 11:18
Post
#3
|
|
![]() Group: Members Posts: 54 Joined: 10-July 04 Member No.: 15247 |
Though I tend to like my foobar a little more minimal, that setup is teh hotness. Details!
|
|
|
|
Mar 29 2006, 11:30
Post
#4
|
|
|
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 |
|
|
|
Mar 29 2006, 14:12
Post
#5
|
|
|
Group: Members Posts: 16 Joined: 22-February 06 Member No.: 27977 |
what font are used in this track info ?
|
|
|
|
Mar 29 2006, 15:08
Post
#6
|
|
![]() Group: Members Posts: 34 Joined: 8-May 05 Member No.: 21952 |
Wow. That first one's really cool. Here is my attempt. Been playing around with the layout system. Fun.
-------------------- I blow chunks.
|
|
|
|
Mar 29 2006, 15:17
Post
#7
|
|
|
Group: Banned Posts: 57 Joined: 21-March 06 Member No.: 28663 |
![]() Crossposted in the main thread recently, where requests prompted an upload of the buttons and fcs: http://s54.yousendit.com/d.aspx?id=20KMA5P...4F21JDLFLXUDI20 Waiting for uie_tabs so I can tab-panel my album list with explorer tree. |
|
|
|
Mar 29 2006, 15:21
Post
#8
|
|
|
Group: Members Posts: 249 Joined: 29-September 01 Member No.: 48 |
Hi,
I really dont have a clue about this stuff but am willing to have a try if someone points me in the correct direction: For example, what does one do with all of that code? Then what happens with the playlist style? Sorry to be such a "dork" auldyin |
|
|
|
Mar 29 2006, 16:53
Post
#9
|
|
|
Group: Members Posts: 132 Joined: 23-December 05 From: Seattle, WA Member No.: 26598 |
Patchu, the font is Calibri 8pt bold. It notes that right at the top of the code.
MechA, I see you are using my modification of plisk, with your own little twists. greMay I ask how you got text in ( ) or [ ] to fade? Looks great. I'm still waiting for ProjectM, uie_tabs, Simplespectrum vis, openwith, quicktag, hotness for v0.9, and some other ports I can't think of right now. Keep posting those layouts, they look awesome! This post has been edited by Habla: Mar 29 2006, 17:01 |
|
|
|
Mar 29 2006, 16:55
Post
#10
|
|
![]() Group: Members Posts: 92 Joined: 11-March 04 From: The Forest Member No.: 12650 |
|
|
|
|
Mar 29 2006, 16:57
Post
#11
|
|
|
Group: Members Posts: 1023 Joined: 16-October 03 Member No.: 9337 |
It would be nice if everyone could post their config file and a list or required plugins so others that arent as good at setting up fb2k can use the thread as a resource to get it looking the way they want.
-------------------- http://forum.dbpoweramp.com/showthread.php?t=21072
|
|
|
|
Mar 29 2006, 17:02
Post
#12
|
|
|
Group: Members Posts: 132 Joined: 23-December 05 From: Seattle, WA Member No.: 26598 |
You mean instead of waiting for people to ask for it, they just post every aspect at once? Not a bad idea...
|
|
|
|
Mar 29 2006, 17:27
Post
#13
|
|
![]() Group: Members Posts: 74 Joined: 3-April 04 Member No.: 13211 |
|
|
|
|
Mar 29 2006, 19:25
Post
#14
|
|
|
Group: Banned Posts: 57 Joined: 21-March 06 Member No.: 28663 |
QUOTE (Habla @ Mar 29 2006, 09:53 AM) Patchu, the font is Calibri 8pt bold. It notes that right at the top of the code. MechA, I see you are using my modification of plisk, with your own little twists. greMay I ask how you got text in ( ) or [ ] to fade? Looks great. I'm still waiting for ProjectM, uie_tabs, Simplespectrum vis, openwith, quicktag, hotness for v0.9, and some other ports I can't think of right now. Keep posting those layouts, they look awesome! With the text in [ ], that's actually displayed from a FEATURING tag I use for some tracks. For text in ( ), I grey it on a given track if the tag LTA (leave title alone) isn't set, a habit I picked up from one of upNorth's very old configs. Here's the code. CODE $puts(t_title,%title%) $if($and(%title%,$not(%LTA%)), $puts(ext1,$ifgreater($strchr($get(t_title),'('),$strchr($get(t_title),'['),$strchr($get(t_title),'('),$strchr($get(t_title),'['))) //if it starts with one, but there are more later $if($strcmp(1,$get(ext1)), $puts(ext1,$ifgreater($strrchr($get(t_title),'('),$strrchr($get(t_title),'['),$strrchr($get(t_title),'('),$strrchr($get(t_title),'['))) ) $if($greater($get(ext1),1), $puts(ext2,$sub($get(ext1),1)) $puts(t_title_extra,$get(t_title)) $puts(t_title,$cut($get(t_title),$sub($get(ext2),1))) $puts(t_extra,$substr($get(t_title_extra),$get(ext1),$len2($get(t_title_extra)))) )) After that t_title contains the title before the parentheses, and t_extra contains stuff in parentheses, so then I display it like this: CODE $if($stricmp(%tracknumber%,01), FFFFFF|FFFFFF$get(t_title), 000000|000000$get(t_title)) $if(%featuring%, $if($stricmp(%tracknumber%,01), 838362|C3C3A2 '['feat. %featuring%']', A3A372|838352 '['feat. %featuring%']')) $if($stricmp(%tracknumber%,01), A3A3A3|C3C3C3 $get(t_extra), 737373|535353 $get(t_extra)) The checks for tracknumber=01 are since the colors need to be a bit different to display nicely on the black background of the first track in an album. The other most significant change I made compresses the left column display of albums smaller than 4 tracks to still look good (I use the TOTALTRACKS tag). Screenshot here: ![]() (code not included in post because it's long and ugly, but if you want it I've got it.) EDIT: By the way, why'd you make title and length the same column when you wrote it? This post has been edited by MechaA: Mar 29 2006, 19:38 |
|
|
|
Mar 29 2006, 20:09
Post
#15
|
|
|
Group: Members Posts: 8 Joined: 10-September 05 Member No.: 24412 |
|
|
|
|
Mar 29 2006, 20:10
Post
#16
|
|
|
Group: Members Posts: 257 Joined: 27-September 05 Member No.: 24739 |
Habla that is a great looking foobar. What are all the ticks at the end stand for: "t", "al", "ar", "g", "y"
This post has been edited by 2Pacalypse: Mar 29 2006, 20:11 |
|
|
|
Mar 29 2006, 21:07
Post
#17
|
|
![]() Group: Members Posts: 218 Joined: 26-March 06 From: Brazil Member No.: 28866 |
QUOTE (Habla @ Mar 29 2006, 04:30 AM) Trackinfo code: Playlist style: http://rapidshare.de/files/16696941/blackwhitered.fcs.html I want to find some new buttons... Thanks, nice playlist style and trackinfo code -------------------- -foobar2000 + Burrrn + EAC
-HD 80Gb using High QualityVBR MP3s |
|
|
|
Mar 29 2006, 21:31
Post
#18
|
|
|
Group: Members Posts: 15 Joined: 25-April 03 Member No.: 6194 |
|
|
|
|
Mar 29 2006, 21:49
Post
#19
|
|
|
Group: Members Posts: 31 Joined: 5-June 05 Member No.: 22531 |
|
|
|
|
Mar 29 2006, 22:23
Post
#20
|
|
![]() Group: Members Posts: 358 Joined: 6-March 04 From: Iowa Member No.: 12503 |
I'm still playing with mine, i don't know if it's going to look anything like this by the end of the week. And if it looks too busy, imagine it without the side bar (it's hide-able with F4 if i don't need to see the extra junk).
pix (and information so nobody asks me later): ![]() component(s): foo_browser; foo_ui_columns; foo_uie_albumart; foo_uie_trackinfo formatting string(s): my own (i don't usually hand them out, kind of a jerk like that) font(s): Calibri button(s): stuff from GANT Stock, i just converted the icons to PNGs visual style: HmmXP (modified a little by myself) I kinda miss the thingie that tells you what LAME settings were used to encode MP3s. :/ -------------------- ~
|
|
|
|
Mar 29 2006, 23:03
Post
#21
|
|
|
Group: Members Posts: 31 Joined: 5-June 05 Member No.: 22531 |
What Calibri settings do you use? Mine seems to look like garbage unless its bold and size 12+
|
|
|
|
Mar 29 2006, 23:10
Post
#22
|
|
|
Group: Members Posts: 132 Joined: 23-December 05 From: Seattle, WA Member No.: 26598 |
QUOTE (Highlander @ Mar 29 2006, 12:31 PM) QUOTE (2Pacalypse @ Mar 29 2006, 11:10 AM) Habla that is a great looking foobar. What are all the ticks at the end stand for: "t", "al", "ar", "g", "y" I'm guessing title, album, artist, genre and year. Right. And "#" is hidden, I need to make the column wider. That column is a tag-matrix. QUOTE (Sphix @ Mar 29 2006, 12:07 PM) Thanks! QUOTE (Bob... Just Bob @ Mar 29 2006, 02:03 PM) Um, I don't know. i just changed the font to Calibri. I don't know what settings you speak of. cleartype maybe? This post has been edited by Habla: Mar 29 2006, 23:11 |
|
|
|
Mar 29 2006, 23:12
Post
#23
|
|
![]() Group: Members Posts: 358 Joined: 6-March 04 From: Iowa Member No.: 12503 |
Umm. Regular (non-bold), size 8 for everything except the play list (which i think is size 10). Maybe you need ClearType?
-------------------- ~
|
|
|
|
Mar 29 2006, 23:33
Post
#24
|
|
|
Group: Members Posts: 31 Joined: 5-June 05 Member No.: 22531 |
Oh god, how have I lived without ClearType for all this time.
|
|
|
|
Mar 29 2006, 23:55
Post
#25
|
|
|
Group: Banned Posts: 57 Joined: 21-March 06 Member No.: 28663 |
|
|
|
|
![]() ![]() |
|
Lo-Fi Version | Time is now: 18th May 2013 - 12:52 |