Foobar2000 Customization Topic


Recommended Posts

ssconfig5

ssconfig51cr5.th.png

Get it here

--simple, intuitive navigation

--with 5 different user definable colors, and 3 themes, can match nearly every VS.

--supports all your favorite foobar components, without requiring you to install any you don't need.

Edited by shakey_snake
Link to comment
Share on other sites

I used panelsui 0.14.12 beta, and I just noticed that the option to hide title bar was gone.

Is there anyway to hide the foobar window's title bar? or I had to use an older version

of panelsui?

Link to comment
Share on other sites

omg i'm so fkn mad...lol.. i messed up my playlist sorting somehow and i've been trying for about 2 hours to get it back and i can't figure out the whole sort/group by bull****.. i'm ready to give up on foobar because nothing in it seems user friendly anymore, it's all just code that i don't understand... does anyone know a site or can you link me to somewhere that i can learn about how to sort my playlist.

Edited by Bubbabyte
Link to comment
Share on other sites

Is there anyway that I can make the previous and upcoming album covers to be displayed as buttons?

I want a small browser where the album you're listening to is centered. To the left and right of this centered cover you'll see the next and previous album. And you should be able to click on them to skip the current album.

Link to comment
Share on other sites

here is mine.. it's a mod of this foo

http://www.neugablonz.de/index.php?seite=foobar2000

sry guys.. i asked the author and he says it doesn't fit his style so i can't release.

However, i modded CepiPerez's Dark config.. just a new wallpaper and new icons, i like it more. I also added spectrum as well, but i think it looks really nice.

post-10919-1190088227_thumb.jpg

Link to comment
Share on other sites

a few people have asked me about my mods, radecke's wood mod i posted a few pages back and the mod i posted above.. i didn't do any of the code i just edited images, so here they are, both mods packaged in the 1 rar.

you will need to put this on first

http://www.sendspace.com/file/y1s7uj

that's Dark1.5c with all components.. install that into PanelsUI/Dark1

or install Radecks config files which you can find here

http://www.neugablonz.de/index.php?seite=foobar2000

then just unzip my folder into your programs folder and it should overwrite the proper files.. if i missed any images let me know.

MY FILES

Link to comment
Share on other sites

I've recently started using the WINDOWSIZE: command on buttons to resize foobar, but is it possible to move it to a position also? for example make foobar small and move it to the top right, in one button?

Link to comment
Share on other sites

Great config lassekongo83.

I can't seem to get it right. The fitting is off & there's no album art on the playlist. The buttons don't look right either.

Any ideas?

th_83551_untitled_122_1058lo.JPG

Resize the window to make sure that everything is placed correctly. Also, that bg you're using looks quite small for the original settings. The album art must be named folder.jpg. You'll also need to go to the settings in panelsui and sort by %album%. Then you need to tag each album's %totaltracks% tag.

Link to comment
Share on other sites

Hey! I posted this on Hydrogen Audio forums but didn't get any answers, so here goes. I have 2 questions regarding the Track Display panel config that I'm using:

1) how can I change the Last played time from AM/PM to 24h?

2) how can I make the separators wider?

// Global
// !!!!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,$rgb(100,100,100))

// Info Color e.g. "Black Dog"
$puts(info,$rgb(160,160,160))

// Info Annotation Color (e.g. kbps is the annotation)
$puts(anno,$rgb(160,160,160))

// Separator
// the separators (Song,Play,Tech info) will change to a different color if the panel mode is set to Follow cursor.
// change "followcursorcol" to change this color. It is currently set to flash orange.
$puts(followcursorcol,$rgb(200,150,50))
$puts(text2,$rgb(240,240,240))
$puts(text1,$if(%_trackinfo_nowplaying%,$rgb(35,35,35))$if(%_trackinfo_followcursor%,$get(followcursorcol)))
$puts(fadeend,$rgb(245,245,240))
$puts(seplen,70)
$puts(sepchar,'.')

// Not Playing
$puts(notplaying,$transition($repeat($get(sepchar),$get(seplen)),$get(fadeend),$get(text1))$get(text1)'[' $get(text2)Not Playing $get(text1)']'$char(10))

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

// Background
$drawrect(0,0,0,0,brushColor-35-35-35 penColor-null)

// PerSecond
// SONG INFO SEPARATOR
$if(%isplaying%,$transition($repeat($get(sepchar),$get(seplen)),$get(fadeend),$get(text1))$get(text1) $get(text2)S o n g  I n f o $char(10),)
//SONG INFO
$if(%title%,$get(head)Title: $get(info)%title%$char(10),)
$if(%artist%,$get(head)Artist: $get(info)%artist%$char(10),)
$if(%album%,$get(head)Album: $get(info)%album%$char(10),)
$if(%date%,$get(head)Year: $get(info)%date%$char(10),)
$if(%tracknumber%,$get(head)Track #: $get(info)%tracknumber%$char(10),)
$if(%genre%,$get(head)Genre: $get(info)%genre%$char(10),)


// TECH INFO SEPARATOR
$if(%isplaying%,$transition($repeat($get(sepchar),$get(seplen)),$get(fadeend),$get(text1))$get(text1) $get(text2)T e c h  I n f o $char(10),)
//TECH INFO
$if(%isplaying%,$get(head)Length: $get(info)$if(%_isplaying%,%_time_elapsed%$get(anno)$if(%_length%, / %_length%,)$if(%_length%,),%_length%) $char(10),)
$if(%isplaying%,$get(head)Codec: $get(info)%codec% [%codec_profile%] @ %bitrate%kbps $char(10),)
$if(%isplaying%,$get(head)Encoder: $get(info)$info(tool) $char(10),)
$if(%isplaying%,$get(head)Compression: $get(info)$div(1411,%__bitrate%).$substr($muldiv(1411,100,%__bitrate%),2,3):1 '('$get(info)$muldiv(%__bitrate%,100,1411)$get(anno)'%)'$char(10),)
$if(%isplaying%,$get(head)Channels: $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(%comment%,$get(head)Comment: $get(info)[%comment%] $char(10),)

//PLAYSTATS
$if(%last_played%,
$transition($repeat($get(sepchar),$get(seplen)),$get(fadeend),$get(text1))$get(text1) $get(text2)P l a y  I n f o
$char(10),)

$if(%play_count%,$get(head)Played $get(info)%play_count% times$char(10),)
$if(%last_played%,$get(head)Last played on $get(info)$get(time_of_year) at $get(time_of_day)$char(10),)

ATM it looks like this:

trackpanelnx9.jpg

Thanks in advance! :)

Link to comment
Share on other sites

Get rid of the $get(yy) from...

// Time Format

$puts(time_of_day,$get(hour1)$get(min)$get(sec) $get(yy))

to remove the am/pm bit.

And change the?$get(hour1)>?bit t$get(hour)i> to change the hour numbers to 24 hour.

after?that?you?can?remove?the?

// 24 Hour to 12 Hour Conversion

// AM/PM Conversion

sections as you won't be needing them anymore.

Link to comment
Share on other sites

Hello, I have a problem with controlling syntax flow in foobar script :)

I want to this

if( %isplaying% AND side_width == 220){

expression

}

And this is what I have come up with, but it does not work.

$if($and(%isplaying%, $ifequal($getpvar(side_width),220,true,false)),

expression
)

Ifequal seems to return true/false as a string rather than the primitive state. 0/1 doesn't work either.

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.