Recommended Posts

i B i Z A

ColumnsUI & Panel Stack Splitter config for foobar2000 v0.9.4, v0.9.5 & v0.9.6

ibiza20a_preview1496.png

click below for full view :

ibiza10103.png.xs.jpg

First release : 17/06/2008

Last Release : 26/10/2008

Version : 2.0b NEW!

/// PLEASE READ THIS BEFORE GETTING MY CONFIG ///

ColumnsUI Config using Panel Stack Splitter give to foobar200 a kick ass look, but these configs are not recommended to newbees to foobar2000, DefaultUI is a better choice is you don't know how configuring a component and if you don't know a little bit titleformatting script used in foobar.

--- use at your own risk and matching your foobar capacities ---

/// COMPONENTS REQUIRED ///

- ColumnsUI 0.3 beta2 preview9 or higher - foo_ui_columns.dll

- Panel Stack Splitter 0.3.4a or higher - foo_uie_panel_splitter.dll

- ELPlaylist 0.6.2.6b or higher - foo_uie_elplaylist

- (Chronial) Cover Flow 0.3.0 or higher - foo_chronflow.dll

- Graphical Browser rev015 or higher - foo_uie_graphical_browser.dll

- Lyric Show Panels 0.3.1.1b8 or higher - foo_uie_lyrics.dll

- Track info panel mod 0.8.0 or higher - foo_uie_trackinfo_mod.dll

- Quick Search Toolbar 2.8l or higher - foo_uie_quicksearch.dll

- Channel Spectrum Panel 0.16 or higher - foo_uie_vis_channel_spectrum.dll

- Album list panel 0.2.3beta or higher - foo_uie_albumlist.dll

- Playlists Dropdown 0.6 alpha4 or higher - foo_uie_playlists_dropdown.dll

- WSH Panel 0.7.2 or higher - foo_uie_wsh_panel.dll

- (optional) last.fm radio 0.5 or higher - foo_lastfm_radio.dll

/// FONTS REQUIRED ///

- Segoe UI

- Angelina

- Smirnof

- Uni 05_53

- Wingdings

/// DOWNLOADS ///

get files from DA : http://br3tt.deviantart.com/art/IBIZA-foobar-config-91437036

/// INSTALLATION ///

1) extract .7z archive in the default foobar2000 folder (must be C:\Program Files\foobar2000\)

2) run foobar with ColumnsUI as interface

3) go to preferences -> ColumnsUI -> Main -> use Import Button to import the ibiza20b.fcl file, apply the imported layout !

4) you may have to configure stand alone components like Quick Search Toolbar, Cover Flow, Lyric Show panel ... cause the configuration file do not contains my settings (not stored in the .fcl)

5) you may have to change the PATH for covers and artist photos for each components using them, simply rigth-click on the component to update --> enter settings of the component --> modify the path for the variables cover.path and/or artist.path, generally coded in the first line of the code of the component (graphical browser, ELPlaylist, Panel Stack Splitter)

6) modifying PATH of covers and artists photos for the background Transparency in ELPlaylist :

- transparency is ON by default, if nothing appear (so looks like it is OFF) it is because the PATH for covers and Artist Photo is mine and you have to modify them !

=> the more easy way if you don't know how to find the code for the Panel Stack Splitter that contains the ELPlaylist panel is explained here :

=> rigth-click in the back space (2 pixeld high!) just between the top line just above the playlist and top of the playlist, see below and follow instructions to modify the PATH of your covers and Photos :

howto-transparency333.png

...to make the transparency brighter or darker, modify the __TRANSPARENCY__ value in ELPlaylist Settings [0-255] ... default value (for my brigth monitor) is 100 :

transparency100886.jpg.xs.jpg

/// STARTUP possible Settings ///

1/ Playback Order

- to set the playback order to use on startup, you have to go to Splitter Settings (rigth click on the playback button bar except on the rating system! ---> Splitter Settings ...)

in the list of panels used, you'll find at top 3 panels (which are only used as boolean) : Playback Order Default, Shuffle & Repeat

==> to select which you want to use on startup, select which you want to display and on the rigth of this list, uncheck the box 'Hidden on startup' ... for the 2 other panels check the box !!!

2/ Left Panel display

same way, but select in the list of panels 'Left Panel' and use the box option to hide or show the panel on startup.

3/ Split Panel display

same way, but select in the list of panels 'Split Panel' and use the box option to hide or show the panel on startup.

/// CHRONFLOW JScript ///

// Author: mil3s (moded by br3tt for point of view)

// General Notes:
// Most of these functions return an array with 3 elements
// These are the x,y,z coordinates in 3d-space
// x is left to right
// y is bottom to top
// z is front to back

var coverSpacing = 0.12;

/************************* COVER DISPLAY *****************/
// These functions define the Display of the single Covers
// The given parameter coverId is a floating point number.
// It is 0 for the center cover, 1 for the one right
// beneath it, -1 for the one on the left side and so on.
// During movement the values float between the integer
// values.
function coverPosition(coverId){
	var x, y, z;
	y = 0;
	if (Math.abs(coverId) <= 1){ // The centered cover
		z = 4 + 0.5 * (1 - Math.abs(coverId));
		x = coverId * 0.875;
	} else { // The covers on the side
		z = 4 - (Math.abs(coverId)-1) * 0.01;
		x = 0.875 + coverSpacing * (Math.abs(coverId)-1);
		if (coverId < 0)
			x *= -1;
	}
	return new Array(x, y, z);
}

// return array is (angle, x, y, z) - this rotates
// the cover *angle* degrees around the vector (x,y,z)
// With (0,0,0,0) the cover is parallel to the x-y-Plane
function coverRotation(coverId){
	var angle;
	if (Math.abs(coverId) < 1){ // The centered cover
		angle = coverId * -60;
	} else { // The covers on the side
		if (coverId > 0)
			angle = -60;
		else
			angle = 60;
	}
	return new Array(angle, 0, 1, 0);
}

// Defines the the size boundaries for the cover.
// Aspect ratio is preserved.
// Return Array is (widht, height)
function coverSizeLimits(coverId){
	return new Array(1, 1);
}


// Sets which point of the cover coverPosition() defines
// (-1,-1) means bottom left, (0,0) means center,
// (1,1) means top right, (0, -1) means bottom center etc.
// The cover is also rotated around this point.
function coverAlign(coverId){
	return new Array(0, -1);
}


// Defines the range of covers to draw.
// Return array is (leftmostCover, rightmostCover)
// This interval shouldn't be larger than 80
// The center cover is 0.
function drawCovers(){
	return new Array(-30, 30);
}


// In which direction should the fov be expanded/shrinked
// when the panel is resized?
// If this returns (0,1), the height is fixed.
// If this returns (1,0), the width is fixed.
// You can also return stuff like (0.5,0.5) or (7, 3)
// The values determine how important it is for this
// dimension to stay fixed.
function aspectBehaviour(){
	return new Array(0, 1);
}

/************************** CAMMERA SETUP ****************/
// Position of the viewport
function eyePos(){
	return new Array(0, 0.90, 6.0);
}
// Defines the point for the eye to look at
function lookAt(){
	return new Array(-0.0, -0.75, 0.6);
}
// Used to rotate the view.
// The returned Vector points upwards in the viewport.
// This vector must not be parallel to the line of sight from the
// eyePos point to the lookAt point.
function upVector(){
	return new Array(0, 1, 0);
}

/************************** MIRROR SETUP *****************/
function showMirrorPlane(){
	return true; // return false to hide the mirror
}
// Any Point on the Mirror Plane
function mirrorPoint (){
	return new Array(0, 0, 0);
}
// Normal of the Mirror Plane
function mirrorNormal (){
	return new Array(0, 1, 0);
}

/// POSSIBLE TROUBLES ///

As said above, ColumnsUI Config using Panel Stack Splitter give to foobar200 a kick ass look, but these configs are not recommended to newbees to foobar2000, DefaultUI is a better choice is you don't know how configuring a component and if you don't know a little bit titleformatting script used in foobar.

--- use at your own risk and matching your foobar capacities ---

enjoy! ;)

Edited by Br3tt
Link to comment
https://www.neowin.net/forum/topic/643828-foobar-ibiza-by-br3tt/
Share on other sites

ColumnsUI will not import ibiza. it complains that 'track info' is not present.

1) have you installed track info and track info mod components like listed ?

2) if yes, have you got some error message at the launch of foobar about track info ?

3) are you running XP or Vista ? (i use vista)

4) Import works well for me, check the version of ColumnsUI you are running ?

i hope you'll find the pb :)

1) have you installed track info and track info mod components like listed ?

2) if yes, have you got some error message at the launch of foobar about track info ?

3) are you running XP or Vista ? (i use vista)

4) Import works well for me, check the version of ColumnsUI you are running ?

i hope you'll find the pb :)

Thanks for the fast anwser. I must be going blind.

You linked to all the components and I did not see them...

Thanks for the fast anwser. I must be going blind.

You linked to all the components and I did not see them...

link to package added in a second time, so you're (maybe) not blind ;)

please give me feeback about it and tell me if you are running XP or Vista please, thanx.

link to package added in a second time, so you're (maybe) not blind ;)

please give me feeback about it and tell me if you are running XP or Vista please, thanx.

I am running XP. I Have not succeeded in getting it to work going to try again.

:edit:

Now its installed. but I does not find the artist picture.

I have it in the same folder as my mp3 files.

It does 'see' my cover picture its in the same location and its called 'folder.jpg'

Edited by Hawk999
I thought I' give it a try but when I try to import the FCL I get an error:

The layout import was aborted because the following required panels are not installed:

NG Playlist GUID:(loads of letters and numbers)

I've got no clue what an NG Playlist is :x

:shiftyninja: you're using an older version of columnsUI, check the version i recommand!

...

Now its installed. but I does not find the artist picture.

I have it in the same folder as my mp3 files.

It does 'see' my cover picture its in the same location and its called 'folder.jpg'

see point 5 of my installation notes !

"5) you may have to change the PATH for covers and artist photos for each components using them, simply rigth-click on the component to update --> enter settings of the component --> modify the path for the variables cover.path and/or artist.path, generally coded in the first line of the code of the component (graphical browser, ELPlaylist, Panel Stack Splitter)"

so you have to replace the line of code :

$puts(artist.path,'Z:\_artists_\'%artist%'.*')

by this one (if your artist photo is named artist.jpg else modify this below) :

$puts(artist.path,$replace(%path%,%filename_ext%,%artist%.jpg))

see point 5 of my installation notes !

"5) you may have to change the PATH for covers and artist photos for each components using them, simply rigth-click on the component to update --> enter settings of the component --> modify the path for the variables cover.path and/or artist.path, generally coded in the first line of the code of the component (graphical browser, ELPlaylist, Panel Stack Splitter)"

so you have to replace the line of code :

$puts(artist.path,'Z:\_artists_\'%artist%'.*')

by this one (if your artist photo is named artist.jpg else modify this below) :

$puts(artist.path,$replace(%path%,%filename_ext%,%artist%.jpg))

Br3tt I found the code:

You gave:

$puts(artist.path,$replace(%path%,%filename_ext%,%artist%.jpg))

I changed it in:

$puts(artist.path,$replace(%path%,%filename_ext%,artist.jpg))

Without the '%' before and after the 'artist' part of the jpg file.

Now the only problem I have is that the album art is gone in the playlist

that shows the 'ON AIR' message. That's not a problem as I use the other playlist.

Thanks for this config. It's really nice!

Now the only problem I have is that the album art is gone in the playlist

that shows the 'ON AIR' message. That's not a problem as I use the other playlist.

Thanks for this config. It's really nice!

[/color][/color]

you have to set the path for cover in NG Playlist, see below :

setting02130.jpg.xs.jpg

Got everything working except the "Kroeger 05_55" font. I have found and installed a lot of different fonts named just like that but I keep getting the "start" button and the list complaining it's not installed.

Any ideas? Or where to find the right one, as I seem to have failed miserably :p

After some more googling I found the version it liked :p

thanks alot for this, looks great

btw, any simple way to disable or remove the rating and that 'start' button on startup? if not, then I'd just learn to ignore it. thanks again

Edited by naserbaser
Got everything working except the "Kroeger 05_55" font. I have found and installed a lot of different fonts named just like that but I keep getting the "start" button and the list complaining it's not installed.

Any ideas? Or where to find the right one, as I seem to have failed miserably :p

After some more googling I found the version it liked :p

thanks alot for this, looks great

btw, any simple way to disable or remove the rating and that 'start' button on startup? if not, then I'd just learn to ignore it. thanks again

ok, i explain why Start screen always display at each launch :

- ColumnsUI and Panel Splitter don't have permanent variables like PVAR in PanelsUI, so, you can't save the layout disposition on exiting or playback order for example ... that is a big lack comparing to PanelsUI.

so i can't say 'Show Start Screen only on time at the 1st launch' and i'll not remove it cause i need it to set some variables at the launch, cause the only way to set some variables is using a button to execute a command.

You know all now ;)

btw it is not very hard to click a button at each launch of foobar, no ?

ok, i explain why Start screen always display at each launch :

- ColumnsUI and Panel Splitter don't have permanent variables like PVAR in PanelsUI, so, you can't save the layout disposition on exiting or playback order for example ... that is a big lack comparing to PanelsUI.

so i can't say 'Show Start Screen only on time at the 1st launch' and i'll not remove it cause i need it to set some variables at the launch, cause the only way to set some variables is using a button to execute a command.

You know all now ;)

btw it is not very hard to click a button at each launch of foobar, no ?

Oh, okay :)

It wasn't a complain, just a question with a great answer, so I'm all good now :)

The only thing is it doesn't work very well when trying to play for example .mp3 directly from windows without foobar being opened first. But that's not a real problem, I'll just have to remember to keep foobar started :) No worries.

Thanks again for an awesome config, really appreciate the work

v1.1a released, update .fcl file and images folder too (added new buttons and deleted unused images)

thanx to report me bugs ;)

Br3tt, I don't see the 'Lock' picture.

I can lock the play list so the functionality is there but there is no 'lock' graphic.

I hope I am making sense to you.

i am also missing the lock button, and also the icon on far left to hide/show the left hand panel too....

nothing removed, they are present !!

lock544.png

@nFHQ|MaTrIx : the button is not showing ? just refresh your images/ibiza folder with the lastest images.7z archive :wacko:

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

    • No registered users viewing this page.
  • Posts

    • Windows 11 KB5094126 BSODing, freezing, forcing BitLocker lockout, breaks OneDrive, and more by Sayan Sen Microsoft released Windows 11 KB5094126 and KB5093998 last week as the latest Patch Tuesday updates. Following that the company also published the accompanying dynamic updates under KB5094149, KB5095971, and KB5094156. While Microsoft has so far not acknowledged any major problems with the release, some users online are running into problems. These range from OneDrive and Dropbox access issues, BitLocker recovery lockouts, to blue screens and BSODs. The most common one seems to be happening with HP systems wherein affected users say they hit 0xc0430001 BSOD (blue screen of death) error code after the KB5094126 update. We wonder if this could be related to the recent bug we covered on HP devices wherein the ongoing Secure Boot certificate updates are leading to similar issues. While we are not certain, users affected by this issue likely need to ensure that the boot.stl file is included on the installation media (such as a USB installer or ISO), if the above-mentioned dynamic updates are deployed. If this file is missing, computers may fail to boot from the installation media and could display the error 0xc0430001. This STL file is used by Secure Boot to verify that the boot files are trusted, so it must match the same Windows version and system architecture. To ensure the file is included, Microsoft recommends using the Update WinPE script, which automatically updates the image and handles the required files. Alternatively, you can manually copy the boot.stl file from the Windows\Boot\EFI folder on a Windows device and place it in the matching folder on your installation media before deploying the updated image. Aside from blue screening some users also note their systems have been freezing following the update. This could be happening to Lenovo PCs specifically. In the case of the OneDrive and Dropbox access issues, a user figured out that there could be a conflict with UAC. He explained: "Okay, so I did some digging, and in our environment KB5094126 breaks OneDrive and Dropbox in Explorer. I went through all our GPOs and found out that the combination of disabling UAC and having my user being a local admin breaks OneDrive in Explorer. ... If I enable UAC again, then it works, even with KB5094126 still installed." Hopefully, Microsoft will look into these issues. Source: Microsoft forum (link1, link2, link3, link4), Reddit (link1, link2, link3, link4)
    • It is when it's a desktop in my house though for a PC that's lightly used and not really important when it is. If it was a laptop, it would be a different story. The real solution is varied and begins starting at post #22 in that thread.
    • Win11Debloat 2026.06.14 by Razvan Serea Win11Debloat is a lightweight, easy to use PowerShell script that allows you to quickly declutter and customize your Windows experience. It can remove pre-installed bloatware apps, disable telemetry, remove intrusive interface elements and much more. The script also includes many features that system administrators and power users will enjoy. Such as a powerful command-line interface, support for Windows Audit mode and the option to make changes to other Windows users. All changes made by Win11Debloat can be easily reversed, and most removed apps can be restored via the Microsoft Store. A full guide on how to undo the changes is available here. Win11Debloat features: Below is an overview of the key features and functionality offered by Win11Debloat. Please refer to the wiki for more information about the default settings preset. Remove a wide variety of preinstalled apps. Click here for more info. Disable telemetry, diagnostic data, activity history, app-launch tracking & targeted ads. Disable tips, tricks, suggestions & ads across Windows. Disable Windows location services & app location access. Disable Find My Device location tracking. Disable 'Windows Spotlight' and tips & tricks on the lock screen. Disable 'Windows Spotlight' desktop background option. Disable ads, suggestions and the MSN news feed in Microsoft Edge. Hide Microsoft 365 ads on the Settings 'Home' page, or hide the 'Home' page entirely. Disable & remove Microsoft Copilot. Disable Windows Recall. Disable Click to Do, AI text & image analysis tool. Prevent AI service (WSAIFabricSvc) from starting automatically. Disable AI Features in Edge. Disable AI Features in Paint. Disable AI Features in Notepad. Disable the Drag Tray for sharing & moving files. Restore the old Windows 10 style context menu. Turn off Enhance Pointer Precision, also known as mouse acceleration. Disable the Sticky Keys keyboard shortcut. Disable Storage Sense automatic disk cleanup. Disable fast start-up to ensure a full shutdown. ...and more. Once you’ve downloaded the Win11Debloat file (Get.ps1), just follow these quick steps: Locate the Get.ps1 script file. Right-click the file and select Run with PowerShell from the context menu. If prompted by User Account Control (UAC), select Yes to grant the script the necessary administrative permissions. Win11Debloat 2026.06.14 changes: This is a minor release that hopefully addresses the false positives in Windows Defender and Bitdefender that prevented users from downloading and/or running Win11Debloat. Refactor Get-RegFileOperations.ps1 to address false positives by @Raphire in #626 Add logging around WinGet app retrieval and increase timeout to 20s by @Raphire Download: Win11Debloat 2026.06.14 | Open Source View: Win11Debloat Home Page | Screenshots 1| 2 Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Still using Microsoft Money 2005 in 2026 here!
  • Recent Achievements

    • Week One Done
      Jeroen Wilms earned a badge
      Week One Done
    • Week One Done
      rolfus earned a badge
      Week One Done
    • One Month Later
      Leroy Jethro Gibbs earned a badge
      One Month Later
    • Conversation Starter
      flexorcist earned a badge
      Conversation Starter
    • One Month Later
      AndreaB earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      508
    2. 2
      +Edouard
      198
    3. 3
      PsYcHoKiLLa
      139
    4. 4
      ATLien_0
      90
    5. 5
      Steven P.
      82
  • Tell a friend

    Love Neowin? Tell a friend!