Foobar2000 Customization Topic


Recommended Posts

I feel like such a n00b asking this...

but how do you get the panels above the menus to expand vertically to show album art and such, above the playlist?

untitled29ue.th.jpg

Link to comment
Share on other sites

I feel like such a n00b asking this...

but how do you get the panels above the menus to expand vertically to show album art and such, above the playlist?

585584490[/snapback]

you could also increase the minimum height for Tabbed panel stack

Link to comment
Share on other sites

I just started to customize it. I was using the default interface just a few days ago. Here is how it looks now. It's a simple modification of the Azrael theme.

foobar2k2.jpg

Edited by muishkin
Link to comment
Share on other sites

Any chance of copy/pasting that statusbar code? :p

585608759[/snapback]

Status bar code used.

Font: Lucida Sans Unicode

//**************************************
// set colors
//**************************************
$puts(col_paused,707070)
$puts(col_streaming,008800)
$puts(col_cue_file,880000)
$puts(col_progbar_symb1,D2D2D2)
$puts(col_progbar_symb2,8C8C8C)
$puts(col_time_remaining,707070)


//**************************************
// 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,24)
$puts(text_bitrate,[%__bitrate_dynamic%'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
//**************************************
$puts(codec,[%__codec%])

$if($strcmp(%__codec%,musepack),
$puts(codec,'MPC')
)

$if($strcmp(%__codec%,vorbis),
$puts(codec,'Ogg')
)

//If no codec tag and not streming, read file extention
$if(%_time_total%,
$if(%__codec%,,
$puts(codec,$upper($ext(%_path%)))
)
)



//**************************************
// bitrate
//**************************************

$if($strcmp(%__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($strcmp(%__codec%,MP3),
$if(%__extrainfo%,,
$puts(extrainfo,$get(spacer)'CBR')
)
)

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



//**************************************
// bitrate alt
//**************************************

$puts(bitrate,%__bitrate%'kbps')



//**************************************
// 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))
)
)



//**************************************
// 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)$get(spacer)$get(spacer)$get(spacer)$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(codec)
$get(spacer)
$get(bitrate)
$get(extrainfo)
$get(samplerate)
$get(channels)
$get(progress_bar)
$get(progress_%)

$get(spacer)

$get(listened_for)
$get(time)

$get(spacer)

$get(rpg)

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

That looks awesome! Could you upload your config, please?

Cheers,

Siku

585609554[/snapback]

I won't give everything this time, but this should be enough. ;)

Color scheme for Azrael's config for Columns UI.

// Foton
// Backgrounds
design=D9D9D9
info=F5F5F5
selected=E1E1E1
playing=D2D2D2
other=FFFFFF
othert=0000FF
// Text
normal=000000
tplay=C0C0C0
tselect=FFFFFF
album=000000
albumf=707070
artistv=A0A0A0
artistvs=000000
title=000000
titles=707070
titlep=707070
bonus=A0A0A0
bonusf=C0C0C0
disc=404040
file=808080
// Playlistnumbers
dimmed=C0C0C0
dimmeds=000080
pl=D2D2D2
pls=FFFFFF
// Tracknumbers
tnorm=404040
tnorms=707070
tdim=E5E5E5
tdims=404040
//Length
total=404040
elaps=707070
// ReplayGain
// Greens
gone=006000
gtwo=007000
// Reds
rone=000060
rtwo=000070

TrackInfo panel code grabbed some pages ago in this topic, slightly tweaked.

That's all. :happy:

Link to comment
Share on other sites

I like it!

Very nice config!

585616837[/snapback]

thanks :D

it is a combo of about 10 different configs, mainly mediamonks, but changed completely.

Link to comment
Share on other sites

Hi all, new to the forums and i would like to get some info on how to make a box like in the image for the artist/alum info like so.

Screeny

found this image in the fb2k forums.

Link to comment
Share on other sites

Hi all, new to the forums and i would like to get some info on how to make a box like in the image for the artist/alum info like so.

Screeny

found this image in the fb2k forums.

585621643[/snapback]

If you mean the popup in the lower corner, that's foo_toaster

EDIT: Isn't there supposed to be an option to edit the toaster config in the Components menu? I can't for the life of me find it... seems to have dissapeared :unsure:

Foob:

0315056wr.png

Ultra-simple to go with this month's desktop

Edited by Cream
Link to comment
Share on other sites

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.