Erftek Posted March 8, 2005 Share Posted March 8, 2005 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? Link to comment Share on other sites More sharing options...
lav-chan Posted March 8, 2005 Share Posted March 8, 2005 There's an option in the preferences for each of those panels called 'minimum height' or something along those lines. Increase that. Link to comment Share on other sites More sharing options...
acedriver Posted March 8, 2005 Share Posted March 8, 2005 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 More sharing options...
Erftek Posted March 9, 2005 Share Posted March 9, 2005 Thanks All! :woot: Link to comment Share on other sites More sharing options...
Dom Posted March 9, 2005 Author Share Posted March 9, 2005 Stop feeling like a n00b when asking people, we all were like you sometime oO, and thats why this topic was created, to help! Link to comment Share on other sites More sharing options...
_R2D2 Posted March 9, 2005 Share Posted March 9, 2005 (edited) This is what mine looks like atm. I wil add a enqueue panel and track info sometime, but this is enough for now. Edited March 9, 2005 by _R2D2 Link to comment Share on other sites More sharing options...
muishkin Posted March 11, 2005 Share Posted March 11, 2005 (edited) 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. Edited March 11, 2005 by muishkin Link to comment Share on other sites More sharing options...
wikerman Posted March 11, 2005 Share Posted March 11, 2005 Modified Verison of What i made... :) Link to comment Share on other sites More sharing options...
Ran Sagy Posted March 11, 2005 Share Posted March 11, 2005 Cant remember when i last posted mine, so here's my current: Link to comment Share on other sites More sharing options...
eliazu Posted March 12, 2005 Share Posted March 12, 2005 so nice to see other israelis here. :) Link to comment Share on other sites More sharing options...
miscellanea Posted March 12, 2005 Share Posted March 12, 2005 I also modified Navigator Suite. I deleted what I never use. It became smother scrolling than before. http://img208.exs.cx/img208/4752/fb2k0312a8zn.png Another is Gems. Having colour transition scrolling skips. http://img208.exs.cx/img208/8841/fb2k0312b4ru.png Link to comment Share on other sites More sharing options...
Spidy` Posted March 13, 2005 Share Posted March 13, 2005 Updated to match my new VS. Link to comment Share on other sites More sharing options...
Shannon Posted March 13, 2005 Share Posted March 13, 2005 Updated to match my new VS. 585608487[/snapback] Any chance of copy/pasting that statusbar code? :p Link to comment Share on other sites More sharing options...
Siku Posted March 13, 2005 Share Posted March 13, 2005 Updated to match my new VS. That looks awesome! Could you upload your config, please? Cheers, Siku Link to comment Share on other sites More sharing options...
dN. Posted March 13, 2005 Share Posted March 13, 2005 :dj: Link to comment Share on other sites More sharing options...
Spidy` Posted March 13, 2005 Share Posted March 13, 2005 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 More sharing options...
morkuma Posted March 13, 2005 Share Posted March 13, 2005 white. really white Link to comment Share on other sites More sharing options...
POi Posted March 14, 2005 Share Posted March 14, 2005 white.really white 585610728[/snapback] I like it! Very nice config! Link to comment Share on other sites More sharing options...
Shannon Posted March 15, 2005 Share Posted March 15, 2005 Still using a stripped down version of Navigator Suite. Link to comment Share on other sites More sharing options...
morkuma Posted March 15, 2005 Share Posted March 15, 2005 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 More sharing options...
acedriver Posted March 15, 2005 Share Posted March 15, 2005 Still using a stripped down version of Navigator Suite. 585618582[/snapback] that is awesome.. Link to comment Share on other sites More sharing options...
RotAtoR Posted March 15, 2005 Share Posted March 15, 2005 Still using a stripped down version of Navigator Suite. 585618582[/snapback] Ooooh, very nice. Could you possibly post your config file? Link to comment Share on other sites More sharing options...
Tomacco_Boy Posted March 15, 2005 Share Posted March 15, 2005 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 More sharing options...
Cream Posted March 16, 2005 Share Posted March 16, 2005 (edited) 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: Ultra-simple to go with this month's desktop Edited March 16, 2005 by Cream Link to comment Share on other sites More sharing options...
Tomacco_Boy Posted March 16, 2005 Share Posted March 16, 2005 No sorry, i didnt mean the toaster (i personally dont like that :blush: ) but the artist info on the actual columns display. Link to comment Share on other sites More sharing options...
Recommended Posts