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

    • Have I understood it correctly that iOS 27 is an Apple Intelligence party only? Thus only for iPhone 15 Pro and higher, and especially even beter for last years iPhone? So basically all iPhone 14 and earlier become obsolete and cannot be used with Apple Intelligence and/or SirI AI?
    • macOS ‘Golden Gate' unveiled with standalone Siri app, performance improvements and more by Hamid Ganji After months of rumors about Apple’s latest software updates, the company unveiled macOS 27 at the 2026 Worldwide Developers Conference. macOS 27 isn’t a major departure from the previous version; instead, it focuses on refining the user experience and fixing some of the annoying bugs users have reported over the past year. The new macOS 27 is named Golden Gate. When it comes to the list of new features, you should not expect a long one, as Apple has followed the Snow Leopard playbook from 2009 with macOS 27. First, the Liquid Glass interface isn’t gone; it's been updated to improve readability. It gets a new slider in settings to adjust Liquid Glass, letting you go from ultra-clear to fully tinted with ease. App icons also get an additional layer of Liquid Glass to look sharper. Smoother system animations, faster content loading, and a similar corner radius for windows are other improvements for macOS 27. With iOS 27, Apple released a standalone Siri app for iPhone users, and the app is also coming to Macs with the latest update. The all-new Siri AI app features a chatbot-style interface and aims to compete with Google’s Gemini and OpenAI’s ChatGPT. It supports both text and voice prompts and provides users with access to previous conversations for reference. The Siri app can also perform a wide range of tasks, including on-device search, image generation, information summarization, and more. Users can also rely on Siri for personal context. Siri is integrated with various apps, allowing users to complete tasks with a single prompt. With the screen awareness capability, you can ask Siri about locations and images on your screen. Which devices won’t get macOS 27? If you’re still using an Intel-powered Mac, we have bad news for you. macOS 27 is only compatible with Apple Silicon chips and drops support for Intel-based Macs. Here’s a list of devices that won’t be compatible with macOS 27: Mac Pro (2019) 16-inch MacBook Pro (2019) 27-inch iMac (2020) 13-inch MacBook Pro (2020) When can you get macOS 27? Apple developers can now access the first beta of macOS 27. However, the first public beta is expected to be released sometime next month. Users will have to wait until this fall for the stable version of macOS 27.
    • Who wants to pay higher prices for the same 6+ year hardware in a new shell? This is hardware where things change fast and improve continuously. They could update w/ quicker/more efficient compute, faster storage, new controllers with new features (not a shell/design update), which are all realistic possibilities. They've done mid-generation console updates, but all we've had for Series X/S are not just different configuration updates (storage / digital versions / console aesthetics). Instead they've prioritized acquisitions, increasing prices, and have lost quite bit of their fan base because of lack of vision.
  • 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
      238
    3. 3
      ATLien_0
      80
    4. 4
      Steven P.
      78
    5. 5
      +Edouard
      75
  • Tell a friend

    Love Neowin? Tell a friend!