Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: Foobar Gallery (Read 1799159 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Foobar Gallery

Reply #2450
Quote
Anyone else have any dark themes? Show 'em off... I love em! 
[a href="index.php?act=findpost&pid=375221"][{POST_SNAPBACK}][/a]

[a href="http://img206.imageshack.us/my.php?image=capture324200612534pm327200611.png" target="_blank"]
foobar2000 + EAC + Burrrn = Happiness

Foobar Gallery

Reply #2451
foobar2000 v0.9

Here's mine (obviously temporary ).
It has auto-hide sidebar with only the playlist switcher inside.
Sorry for my English 


Foobar Gallery

Reply #2452
Here is mine so far.  Working out the spacing bugs in the menu row, and the seekbar.  The album list in the top left is a filler until the album art plugin is ported

Bostitch vs. Swingline; Choose your stapler wisely.

Foobar Gallery

Reply #2453
Quote
that's a way pimped foobar, any guides about how you did it?
[{POST_SNAPBACK}][/a]

Thanks!  Built with -
- v0.8.3
- Azrael globals ('Dark and Red', somewhat modded...)
- foo_ui_columns_012_final
- foo_uie_tabs_019
- foo_uie_albumart_v0_045
- simple spectrum panel
- foo_vis_vu_meter-0.2
- the current version of the 'track info' .dll (I don't remember the version - sorry)
- buttons from here [a href="http://foobar.nub4life.net/columns/pafiledb.php?action=file&id=124]http://foobar.nub4life.net/columns/pafiled...ion=file&id=124[/url]
- Windowblinds 'Reduce' skin

I think that's all of it.  I can e-mail you the .fcs, if you want...
voted 'Most likely to veer your thread' three straight years!

Foobar Gallery

Reply #2454

Foobar Gallery

Reply #2455
Quote
Here is mine so far.  Working out the spacing bugs in the menu row, and the seekbar.  The album list in the top left is a filler until the album art plugin is ported


[a href="index.php?act=findpost&pid=375853"][{POST_SNAPBACK}][/a]


Thats really nice!  One question tho, how did u get the time playing percentage bar at the bottom?

Foobar Gallery

Reply #2456
Here is my statusbar with progressbar (1 page before is a screenie)

note: i didnt do that myself, found it here and modified it slightly ... missing parts are only commented, so you can put them back

Code: [Select]
//**************************************
// set colors
//**************************************
$puts(col_paused,0000FF)
$puts(col_streaming,008800)
$puts(col_cue_file,880000)
$puts(col_progbar_symb1,0000DD)
$puts(col_progbar_symb2,000000)
$puts(col_time_remaining,0000DD)


//**************************************
// set variables
//**************************************
$puts(text_streaming,'Streaming')
$puts(text_listened_for,'Listened for:')
$puts(text_cue_file,'Cue File')
$puts(text_paused,'PAUSED')
$puts(text_time_remaining,[%_time_remaining%])
$puts(spacer_symb,' ')
$puts(spacer_width,2)
$puts(progbar_symb1,'█')
$puts(progbar_symb2,'█')
$puts(progbar_length,40)
$puts(text_bitrate,$if2($pad(%__bitrate_dynamic%,3)'kbps',$if2(%__bitrate%'kbps',)))
$puts(text_extrainfo,[%__extrainfo%])



//**************************************
// add colors and formatting
//**************************************
$puts(spacer,$repeat($get(spacer_symb),$get(spacer_width)))
$puts(text_streaming,$get(col_streaming)$get(text_streaming))
$puts(text_listened_for,$get(col_streaming)$get(text_listened_for))
$puts(text_cue_file,$get(col_cue_file)$get(text_cue_file))
$puts(text_paused,$get(col_paused)$get(text_paused))
$puts(text_time_remaining,$get(col_time_remaining)$get(text_time_remaining))
$puts(progbar_symb1,$get(col_progbar_symb1)$get(progbar_symb1))
$puts(progbar_symb2,$get(col_progbar_symb2)$get(progbar_symb2))



//***********************************************************
//***********************************************************



//**************************************
// streaming
//**************************************
$puts(streaming,
$if(%_time_total%,,
$get(text_streaming)$get(spacer)
)
)



//**************************************
// cuefile
//**************************************
$puts(cue_file,
$if(%__cue_audiotype%,
$get(text_cue_file)$get(spacer)
)
)



//**************************************
// codec
//**************************************
$if(%__codec%,

$if($stricmp(%__codec%,musepack),$puts(codec,'MPC'),
$if($stricmp(%__codec%,vorbis),$puts(codec,'Ogg'),
$puts(codec,%__codec%)
))
,
//If no codec tag and not streaming, read file extention
$if($and(%_time_total%,$not(%__codec%)),
$puts(codec,$upper($ext(%_path%)))
)

)



//**************************************
// bitrate
//**************************************
$puts(bitrate,$get(spacer)$get(text_bitrate))

$if($stricmp(%__codec%,musepack),
$if(%__mpc_profile%,
$puts(bitrate,$get(spacer)%__mpc_profile%$get(spacer)$get(text_bitrate))
)
)


//**************************************
// extrainfo
//**************************************

$puts(extrainfo,$get(spacer)$get(text_extrainfo))

$if($stricmp(%__codec%,musepack),
$if(%__mpc_streamversion%,$puts(extrainfo,$get(spacer)'sv'%__mpc_streamversion%))
)



//**************************************
// samplerate
//**************************************
$puts(samplerate,
$if(%__samplerate%,
$get(spacer)$cut(%__samplerate%,2)'kHz'
)
)



//**************************************
// channels
//**************************************
$puts(channels,
$if(%__channels%,
$get(spacer)$ifgreater(%__channels%,2,%__channels%ch,$ifgreater(%__channels%,1,Stereo,Mono))
)
)


//**************************************
// mp3 stereo mode
//**************************************
$puts(stereo_mode,
$if2('('$abbr(%__mp3_stereo_mode%)')',)
)

//**************************************
// Replay Gain
//**************************************
//track gain
$puts(rpg,

$if(%__replaygain_track_gain%,
$get(spacer)
' TGain:'$cut(%__replaygain_track_gain%,5)'dB'

$if(%__replaygain_album_gain%,
$get(spacer)' AGain:'$cut(%__replaygain_album_gain%,5)'dB'
)
)
)



//**************************************
// progress bar
// (checking total because of streaming)
//**************************************
$puts(progress_bar,
$if(%_time_total_seconds%,
$get(spacer)$get(spacer)
$progress2(%_time_elapsed_seconds%,%_time_total_seconds%,$get(progbar_length),$get(progbar_symb1),$get(progbar_symb2))
)
)



//**************************************
// progress %
// (checking total because of streaming)
//**************************************
//$puts(progress_%,
//$if(%_time_total_seconds%,
//' ='$pad_right($muldiv(%_time_elapsed_seconds%,100,%_time_total_seconds%),3)'%'
//)
//)



//**************************************
// 'Listened for:'
// (used for streaming)
//**************************************
$puts(listened_for,
$if(%_time_total%,,
$get(spacer)$get(spacer)$get(text_listened_for)
)
)



//**************************************
// time
//**************************************
$puts(time,
$get(spacer)
[%_time_elapsed%]
$if(%_time_total%,
'/'%_time_total%
//' ['$get(text_time_remaining)']'
)
)



//**************************************
// paused
//**************************************
$puts(paused,
$if(%_ispaused%,
$get(text_paused)
)
)



//**************************************
//**************************************
// create string
//**************************************
//**************************************

$get(streaming)
$get(cue_file)
$get(codec)
$get(bitrate)
$get(extrainfo)
$get(samplerate)
$get(channels)
$get(stereo_mode)
$get(spacer)$get(spacer)$get(spacer)
$get(progress_bar)
//$get(progress_%)
$get(spacer)$get(spacer)$get(spacer)
$get(spacer)$get(listened_for)
$get(time)
$get(spacer)$get(rpg)

//Right adjust from now on
$char(9)
$get(paused)

Foobar Gallery

Reply #2457
Quote

[a href="index.php?act=findpost&pid=375888"][{POST_SNAPBACK}][/a]


My god, you have so much music. Nice style.
love, IAN
droptothetop.com/

Foobar Gallery

Reply #2458
Quote
Mazy could you share your foobar's config of the darktheme?

thx[{POST_SNAPBACK}][/a]

sure, get it [a href="http://mazy.johanka.cz/temp/mazy_settings_2_dark.rar]here[/url]. it's modified Lyx's Navigator.

i'm now experimenting with subscript numerals and hacks to visually separate trackinfo panel (using extended and customized box-drawing characters):

[a href="http://mazy.johanka.cz/my_pics/temp/foobar/foobar-mazy-2006-03-28.png" target="_blank"] [/i]

Foobar Gallery

Reply #2459
Quote
i'm now experimenting with subscript numerals and hacks to visually separate trackinfo panel (using extended and customized box-drawing characters):

[a href="http://mazy.johanka.cz/my_pics/temp/foobar/foobar-mazy-2006-03-28.png" target="_blank"]

What font is that in the playlist?

Foobar Gallery

Reply #2460
Quote
Nice..

What font is that in the playlist?
[a href="index.php?act=findpost&pid=375998"][{POST_SNAPBACK}][/a]

it's the same you're using ... calibri (bold style). for the trackinfo panel, i added box drawing characters from arial unicode to calibri and changed height of some of them to appear more vertically centered with alphanumeric characters ...

btw: i really like your colors. there must have been a lot of love put in choosing them, i guess

Foobar Gallery

Reply #2461
I'm not using foobar 0.9 full-time until it gets more plug-ins ported over, but i couldn't help playing around with it, so.



Single-disc/single-artist album on top, single tracks in the middle, multi-disc/multi-artist album on the bottom. All the other jazz like trackinfo and seek bar and buttons and stuff are in the side bar (which is hidden in the screen shot but can be re-enabled with the blue button at the top or by pressing F4).

:shrug:




edit:
I should add some characters to Calibri too. What kind of lame-ass font isn't fully Unicode-capable. :/
~

Foobar Gallery

Reply #2462
Quote
Another modyfication ;]

Screenshot

[span style='font-size:8pt;line-height:100%']Moderation: please refrain from inlining images larger than roughly 800x600 and 80KB. please use thumbnails and/or links for large pictures instead.[/span]
[a href="index.php?act=findpost&pid=375397"][{POST_SNAPBACK}][/a]


man.. could you share that .fcs? it's nice.

Foobar Gallery

Reply #2463
here's my dark theme, still tinkering, waiting for album art. everything is taken from others who are awesome in my eyes.



Foobar Gallery

Reply #2465
Quote
Navigator-Suite, custom color


[a href="index.php?act=findpost&pid=376073"][{POST_SNAPBACK}][/a]



I had those buttons for .83, where did you get them for .9.  Could you post them?


Foobar Gallery

Reply #2467
Quote
Right-click whatever's there in the list. It'll say something about replacing the base. You want to choose either a vertical splitter or a horizontal splitter. Think of it like columns and rows in HTML. If you want one panel on top of another, you need a vertical splitter with two panels attached to it. If you want two panels on top of two other panels, you need a vertical splitter with two horizontal splitters attached to it and two panels attached to each of those horizontal splitters.
[a href="index.php?act=findpost&pid=375328"][{POST_SNAPBACK}][/a]


That really helps. I wish they make it even easier to configure. The way they are doing it a bit complicate to most like me. I guess once you learn it, it easier.

Kenneth

Foobar Gallery

Reply #2468
Quote
Navigator-Suite, custom color

Look well with your vs
btw, where did your get this gnome vs?


Foobar Gallery

Reply #2470
How do you change the buttons anyway?

 

Foobar Gallery

Reply #2471
Quote
How do you change the buttons anyway?
[a href="index.php?act=findpost&pid=376145"][{POST_SNAPBACK}][/a]

right click button > customize, the buttons use separate image for each of them.

Foobar Gallery

Reply #2472
Quote
Quote
Another modyfication ;]

Screenshot

[span style='font-size:8pt;line-height:100%']Moderation: please refrain from inlining images larger than roughly 800x600 and 80KB. please use thumbnails and/or links for large pictures instead.[/span]
[{POST_SNAPBACK}][/a]


man.. could you share that .fcs? it's nice.
[a href="index.php?act=findpost&pid=376059"][{POST_SNAPBACK}][/a]


Here you go 

[a href="http://www.megaupload.com/?d=NCVGXB8B]http://www.megaupload.com/?d=NCVGXB8B[/url]


Foobar Gallery

Reply #2474
How does the album art precisely work?

Do you have to have a .jpg of a cover in the folder along with the madsak or is it like freedb?

Also is it just another window you can turn on and off like the spectrum analyser.