Recommended Posts

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

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:

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
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Apple launches new website for parents and a revamped Screen Time experience by Aditya Tiwari At WWDC 2026, Apple announced new parental control features for iOS 27, iPadOS 27, and macOS 27 to keep kids' device usage in check and keep them safe online. As a parent, you'll get access to a simpler setup experience, Ask to Browse, Time Allowances, and a redesigned Screen Time. You'll be able to pick exactly which apps your child can access on their device, choosing from just a few essential apps, a curated set, or the apps you feel are appropriate. There will be an option to gradually add more apps. Ask to Browse is a new feature that requires kids to request permission before visiting a new website in Safari on iPhone, iPad, or Mac. You can also turn on a setting that requires your kid to ask for approval before connecting with an unknown contact via Messages, FaceTime, or the Phone app. You can manage your child's screen time more effectively with Time Allowances that work across categories, including Games, Entertainment, and Social Media. You can set time limits based on your kid's age and get suggestions informed by expert research. Speaking of expert guidance, Apple added that it's working with the American Academy of Pediatrics (AAP) to adapt its Family Media Plan to create a guide parents can refer to when using Apple products. Moreover, the company has also set up a new dedicated website, where you can find tools, resources, and answers to common questions around parental controls and child safety. Apple also allows parents to set daily schedules to manage screen time, configuring access to different apps at different times of the day and across the week. Overall, the Screen Time section has been revamped and provides a bird's-eye view of your kid's average device usage and most-used apps. "For example, to help protect important family moments, parents can quickly limit access during meals, outdoor play, and other times that deserve full attention. If kids need a little extra time to finish something in an app, parents can also easily extend access," Apple said. Apart from these, Communication Safety has been updated to block gore or violent content when detected in shared images or videos. The feature already blurs nudity in Messages and FaceTime calls, and is enabled by default for users under 18.
    • They already threw the Ultra 1st gen under the bus? It really feels like someone screwed up, and that advanced AI features will only be available on the list above but someone screwed up and said that Watch OS 27 in general will only be available for those models. I think they will pull it back. I did see someone also put a snap shot of their series 9 watch being offered the watch os 27 beta. As the backlash online is already in full swing.
    • Right, Google... because that's who this is going to. Google, the company who's entire business model is geared around ad revenue and your personal data.
    • That is the natural course for regulations. First to protect the consumer. Then to protect the business/industry from upstart competition. There are countless examples across history.
    • I have never been a huge fan of libre, it feels really good but exactly when you need an advance feature for data wrangling it falls short every time or has bugs. I am all for euro office if they can deliver a good and usable alternative to MS office with backing of govt function.
  • Recent Achievements

    • Very Popular
      Captain_Eric earned a badge
      Very Popular
    • One Month Later
      amusc earned a badge
      One Month Later
    • One Month Later
      DJC50PLUS earned a badge
      One Month Later
    • Week One Done
      DJC50PLUS earned a badge
      Week One Done
    • Proficient
      Eric Biran went up a rank
      Proficient
  • Popular Contributors

    1. 1
      +primortal
      510
    2. 2
      PsYcHoKiLLa
      230
    3. 3
      ATLien_0
      87
    4. 4
      +Edouard
      80
    5. 5
      Steven P.
      77
  • Tell a friend

    Love Neowin? Tell a friend!