Help - Search - Members - Calendar
Full Version: Columns UI / Panels UI appearance
Hydrogenaudio Forums > Hosted Forums > foobar2000 > 3rd Party Plugins - (fb2k)
Pages: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132
Habla
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:
  • No huge, forum-frame-wrecking images, use thumbnails instead.
  • This thread is only for the sharing of images depicting Foobar v0.9. If you are still using v0.8.3, post in the original thread.

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.
David Nordin
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:
  • No huge, forum-frame-wrecking images, use thumbnails instead.
  • This thread is only for the sharing of images depicting Foobar v0.9. If you are still using v0.8.3, post in the original thread.

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 biggrin.gif
links to components etc etc.
Raja
Though I tend to like my foobar a little more minimal, that setup is teh hotness. Details!
Habla
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...
patchu
what font are used in this track info ?
Farpenoodle
Wow. That first one's really cool. Here is my attempt. Been playing around with the layout system. Fun.
MechaA


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.
auldyin
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
Habla
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!
TedFromAccounting


Here's mine, nothing too fancy. Just started messing with 0.9.
Eli
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.
Habla
You mean instead of waiting for people to ask for it, they just post every aspect at once? Not a bad idea...
DeepDose


Hey all first time showing my setup....zoom in for full view

foobar .9, Album art, track info, foo_Ac3, columns UI edited Navigator fcs...
MechaA
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?
c.rystal


And with the matching visual style:




Modified other configs, got inspired by other layouts. I'm not taking credit for another one's work smile.gif
2Pacalypse
Habla that is a great looking foobar. What are all the ticks at the end stand for: "t", "al", "ar", "g", "y"
Sphix
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 biggrin.gif
Highlander
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.
Bob... Just Bob
QUOTE (c.rystal @ Mar 29 2006, 11:09 AM)

*

Two questions, what font are you using for your track info and whats that little "now playing" box down in the corner ohmy.gif?
lav-chan
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. :/
Bob... Just Bob
What Calibri settings do you use? Mine seems to look like garbage unless its bold and size 12+
Habla
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, nice playlist style and trackinfo code biggrin.gif
*

Thanks!

QUOTE (Bob... Just Bob @ Mar 29 2006, 02:03 PM)
What Calibri settings do you use? Mine seems to look like garbage unless its bold and size 12+
*

Um, I don't know. i just changed the font to Calibri. I don't know what settings you speak of. cleartype maybe?
lav-chan
Umm. Regular (non-bold), size 8 for everything except the play list (which i think is size 10). Maybe you need ClearType?
Bob... Just Bob
Oh god, how have I lived without ClearType for all this time.
MechaA
QUOTE (Bob... Just Bob @ Mar 29 2006, 04:33 PM)
Oh god, how have I lived without ClearType for all this time.
*


How have you lived and not noticed that you didn't turn it on?
Habla
Hah, I was right. Wow. Thats a surprise.

Carry on. Someone port ProjectM, dammit! :-)
ev0|
Umm, how do you guys get the album art to be normal at the top of the playlist (in the toolbars) ? Everytime I put it somewhere outside the sidebar it just looks too scrunched and i can't figure out how to fix it ?
Bryanhoop
Mine, updated today:

unabatedshagie
QUOTE (ev0| @ Mar 30 2006, 01:21 AM)
Umm, how do you guys get the album art to be normal at the top of the playlist (in the toolbars) ? Everytime I put it somewhere outside the sidebar it just looks too scrunched and i can't figure out how to fix it ?
*
There are two ways of fixing that problem,

1. Sounds like you have just added the album art to the toolbar, so you need to go into the preferences and then to the album art tab and set the minimum height from 0 to whatever size you want.

2. Remove the album art from the toolbar and use the columnsui layout settings, mine is set like this:



Which looks like this

c.rystal
QUOTE (Bob... Just Bob @ Mar 29 2006, 09:49 PM)
QUOTE (c.rystal @ Mar 29 2006, 11:09 AM)

*

Two questions, what font are you using for your track info and whats that little "now playing" box down in the corner ohmy.gif?
*



For the track_info panel i used 'AvantGarde LT Medium Caps bold 14pt', you can get it here.

The component for the popup is called 'Pretty Popup', you can find it easily on these boards. wink.gif
skelly831
My new dark style:



quite a departure from my previous iTunes-inspired look.

this one uses Bitstream Vera because on a CRT Calibri and Verdana look like crap (at least on mine.)
lav-chan
Those are the two best-looking fonts ever, i think, and they both look fine on all the CRTs i've ever used....
Jayphen


eh, wanna change the colours but couldn't be bothered..
Jayphen
QUOTE (c.rystal @ Mar 30 2006, 03:54 PM)
QUOTE (Bob... Just Bob @ Mar 29 2006, 09:49 PM)
QUOTE (c.rystal @ Mar 29 2006, 11:09 AM)

*

Two questions, what font are you using for your track info and whats that little "now playing" box down in the corner ohmy.gif?
*



For the track_info panel i used 'AvantGarde LT Medium Caps bold 14pt', you can get it here.

The component for the popup is called 'Pretty Toaster', you can find it easily on these boards. wink.gif
*



How did you get the track info to centre like that?
Habla
QUOTE (c.rystal @ Mar 29 2006, 09:54 PM)
The component for the popup is called 'Pretty Toaster', you can find it easily on these boards. wink.gif
*


There are two components for popup notification, and you fused their names together. One is called Toaster (don't know if its been updated to v0.9 yet), and the other is PrettyPopup. That looks like PrettyPopup to me.
Jayphen


Decided to completely change it..
turzol
Here's mine.

Insolent
Jayphen
Just made a compact version of my new config. I think I'll leave it alone now wink.gif

Jayphen
QUOTE (Insolent @ Mar 30 2006, 08:57 PM)

*


Nice Windows theme.. tongue.gif
Funeral
Vaxis
Just a quick question: how do I put all those panels above the playlist? In the context menu all I get is Album Art, while when I right-click the sidebar, all of them are available.

EDIT: also, in unabatedshagie's attachments I can see 'Splitter' in the layout tab. In mine there's 'Columns playlist' only.
Tiis
Conversation of my 0.8.3, also with flashing TrackInfo Panel. Every two secs. a new info about the actual track cool.gif

c.rystal
QUOTE (Jayphen @ Mar 30 2006, 08:29 AM)
How did you get the track info to centre like that?


I used ' $char(1)C ' in front of the first line.


QUOTE (Habla)
There are two components for popup notification, and you fused their names together. One is called Toaster (don't know if its been updated to v0.9 yet), and the other is PrettyPopup. That looks like PrettyPopup to me.


You're right, it's PrettyPopup. I must have been confused smile.gif
The Seeker
QUOTE (turzol @ Mar 30 2006, 09:11 PM)
Here's mine.


*

Very, very nice!

Edit: I suppose I should include mine shouldn't I?!

As before, it's exceedingly boring. My player spends most of its life in the system tray so I'm not too fussed with its appearance.

All I've done is change the default colours and changed the font so it's a little easier on the eyes when I happen to have it open.

UObean
Well I took Habla's setup and sort of stripped it a little and recolored it.



That actually took me a lot longer than I want to admit. tongue.gif

The placement of the components is temporary, but it has all the things I need for now.
unabatedshagie
QUOTE (Vaxis @ Mar 30 2006, 01:20 PM)
Just a quick question: how do I put all those panels above the playlist? In the context menu all I get is Album Art, while when I right-click the sidebar, all of them are available.

EDIT: also, in unabatedshagie's attachments I can see 'Splitter' in the layout tab. In mine there's 'Columns playlist' only.
*
You need to right click on the columns playlist and choose change base then choose the splitter you want (either vertical or horizontal)
j conky
QUOTE (Tiis @ Mar 30 2006, 06:23 AM)
Conversation of my 0.8.3, also with flashing TrackInfo Panel. Every two secs. a new info about the actual track  cool.gif


*


That is a great setup. Would you mind sharing your fcs and track info code?
muenstereifel
QUOTE (UObean @ Mar 30 2006, 04:52 PM)
Well I took Habla's setup and sort of stripped it a little and recolored it. 



That actually took me a lot longer than I want to admit. tongue.gif 

The placement of the components is temporary, but it has all the things I need for now.
*


wanna share your cfg? rolleyes.gif that looks so good. wink.gif
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2009 Invision Power Services, Inc.