Recommended Posts

Molgen I solved your problem with the BottomPanel.png not displaying unless you resize, it's the location.

If you move the images folder into the panelsui folder and remove all instances of the prefix ".." in the config it loads the moment you start foobar.

Molgen I solved your problem with the BottomPanel.png not displaying unless you resize, it's the location.

If you move the images folder into the panelsui folder and remove all instances of the prefix ".." in the config it loads the moment you start foobar.

It's okay, i've since changed to using no images for the bottom part of the config..

this is getting crazy now, i'm using a mod of dawxxx666's mod of my mod of his config :)

fuu0.png

post-151171-1180253895_thumb.png

My Foobar, simple and very elegant yet easy to use and navigate. I won't change it for a long time though I need to settle a few album art issues :p . Most of it was from my ideas though Apul helped quite a bit with the track display.

Scirwode

I'm lovin' the new config. But a few problems.

75740705mc7.jpg

- It doesn't have the track/volume bar.

- How do I make the font all caps? Even though I tag all my songs in lower caps.

- The ratings bar looks all cram up.

BTW, you two did an amazing job. Thanks for everything, otherwise I'd be one confused FB2K user right now.

Edited by Lqv2015
I'm lovin' the new config. But a few problems.

75740705mc7.jpg

- It doesn't have the track/volume bar.

- How do I make the font all caps? Even though I tag all my songs in lower caps.

- The ratings bar looks all cram up.

BTW, you two did an amazing job. Thanks for everything, otherwise I'd be one confused FB2K user right now.

1) You should install Column UI and WSH panel. It should works, but if not, try to change:

$puts(wshseek,1)
$puts(wshvol,1)

to:

$puts(wshseek,0)
$puts(wshvol,0)

2) I use hooge 05_53 (it have only caps)

3) Those ratings buttons are "|" symbol on your keyboard. Size and shape depends on font which you using so change:

$font(,,bold,100-100-100)$repeat('|',%rating%)
$font(,,bold,200-200-200)$repeat('|',$sub(5,%rating%))

to e.g.

$font(hooge 05_53,6,bold,100-100-100)$repeat('|',%rating%)
$font(hooge 05_53,6,bold,200-200-200)$repeat('|',$sub(5,%rating%))

You can choose other font and size

OK D, I got the bars to show, but it doesn't look like yours. Looks like your old version. How do I have the fill bars?

Second, I'm totally lost on the font & rating stats. Can't get em to work. But I was wondering if I can get rid of the ratings all together. Looks cleaner.

Thanks for you help D.

OK D, I got the bars to show, but it doesn't look like yours. Looks like your old version. How do I have the fill bars?

Second, I'm totally lost on the font & rating stats. Can't get em to work. But I was wondering if I can get rid of the ratings all together. Looks cleaner.

Thanks for you help D.

If you want my bars you need WSH panel components and

$puts(wshseek,1)
$puts(wshvol,1)

If you want to delete rating sys just find:

$puts(ratingsys,1)
//Rating
$puts(write_tags,%rating%)
 $if($get(write_tags),$puts(rating,%rating%),$puts(rating,$cinfo(RATING)))
$alignabs($sub(%_width%,6,$add($get(rating_w),)),0,$sub($get(rating_w),6),11,right,top)
$font(hooge 05_53,,bold,100-100-100)$repeat('|',%rating%)
$font(,,bold,200-200-200)$repeat('|',$sub(5,%rating%))
// rating buttons
  $button2($sub(%_width%,47),$eval(%_height%-$get(offset-bot)-$get(lgy-botswapper)+4),0,0,9,19,,,$ifequal($get(write_tags),1,TAG:SET:Rating:,TAG:SET:Rating:1),$ifequal($get(write_tags),
1,TOOLTIP:"Remove Rating",TOOLTIP:"****"))
 $button2($sub(%_width%,40),$eval(%_height%-$get(offset-bot)-$get(lgy-botswapper)+4),0,0,9,19,,,$if($get(write_tags),TAG:SET:Rating:2,'Heart 2'),TOOLTIP:"Not Bad")
 $button2($sub(%_width%,33),$eval(%_height%-$get(offset-bot)-$get(lgy-botswapper)+4),0,0,9,19,,,$if($get(write_tags),TAG:SET:Rating:3,'Heart 3'),TOOLTIP:"Very Good")
 $button2($sub(%_width%,26),$eval(%_height%-$get(offset-bot)-$get(lgy-botswapper)+4),0,0,9,19,,,$if($get(write_tags),TAG:SET:Rating:4,'Heart 4'),TOOLTIP:"Excellent")
 $button2($sub(%_width%,19),$eval(%_height%-$get(offset-bot)-$get(lgy-botswapper)+4),0,0,9,19,,,$if($get(write_tags),TAG:SET:Rating:5,'Heart 5'),TOOLTIP:"Mega Hit!")
// ------------------------------------------------------------------------------ --------------------------------------------------

in track display and:

//Rating
$alignabs($sub(%_width%,25,$add($get(rating_w),)),3,$sub($get(rating_w),6),13,right,top)
$font(,,bold,100-100-100)$repeat('|',%rating%)
$font(,,bold,200-200-200)$repeat('|',$sub(5,%rating%))

and delete'em all :D

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

    • No registered users viewing this page.
  • Posts

    • JetBrains is working to cut false positives in RustRover 2026.2 by David Uzondu Recently, JetBrains released the fifth EAP build of its dedicated IDE, RustRover 2026.2, bringing improvements like a Run gutter icon for criterion_main! macro benchmarking and a feature that alerts you when there are unused traits in your current scope. Now, the company is out with a blog post addressing one of the "most common" complaints from users: false positives. In RustRover, a false positive occurs when the editor incorrectly highlights something as an error even though the project compiles and runs successfully. This mismatch flags a gap between the IDE's internal intelligence and the actual compiler. When the editor flashes red warnings over perfectly valid code, developers lose trust in the tool, which stalls momentum. Traditionally, RustRover runs cargo check to detect compiler errors and warnings, but it also relies on its own code analysis engine to power real-time features. To provide quick feedback, this engine parses your source code into a syntax tree while inferring types and resolving names as you type. Because this engine must work on broken, half-written code and react instantly, its logic sometimes diverges from the compiler's, producing false positives that do not exist in the compiler's eyes. JetBrains said that it has a "dedicated task force" focused specifically on identifying and fixing false positives by analyzing user reports and examining large-scale open-source projects. To speed up this process, the team built an internal system modeled after Crater, the famous Rust project that compiles and runs tests for every single crate published on crates.io. This automated pipeline compares the diagnostics from RustRover's analysis with actual compiler output to catch discrepancies before they reach users, ensuring smoother workflows. RustRover, for those who're unaware, is a dedicated IDE designed specifically for Rust developers. It's been around for a couple of years now, providing features like built-in debugging via LLDB, seamless cargo integration, advanced macro expansion, and HTML support. JetBrains distributes the app under two licensing models: a paid commercial subscription and a free option for non-commercial use.
    • Last year I bought the 2TB variant for $114 on Amazon. That's crazy that the 1TB is now 67% more expensive for half the storage, even with the newer T9 already on the market. And that's considered a good deal.
    • You can disable all non needed features from Brave. There is also Brave Origin which removes them entirely and it is free for Linux.
    • I wish I could use Brave but the tab suspension feature is horrible. It doesn't suspend them like Edge does. Even after 2h open with 70+ tabs (same as Edge), it has 2GB more consumption than Edge for no reason.
    • TeamViewer 15.78.4.0 by Razvan Serea TeamViewer is the fast, simple and friendly solution for remote access over the Internet - all applications in one single, very affordable module. Remote control of computers over the Internet, Instantly take control over a computer anywhere on the Internet, even through firewalls. No installation required, just use it fast and secure. Training, sales and teamwork, TeamViewer can also be used to present your desktop to a partner on the Internet. Show and share your software, PowerPoint presentations etc. File transfer, chat and more, Share your files, chat, switch the direction during a teamwork session, and a lot more is included in TeamViewer. TeamViewer key features: Cross-platform remote access (Windows, macOS, Linux, Android, iOS, IoT) Attended and unattended remote control Secure file transfer between devices Remote printing to local printers Multi-monitor support with easy switching Wake-on-LAN for sleeping devices Session links for quick connections (no password sharing) Web client access (no installation needed) End-to-end encryption (AES-256) Two-factor authentication and access controls AI-powered session insights and reporting Mass deployment and device management tools Customizable allow/block lists for security Command line and script execution remotely Performance monitoring and analytics dashboards TeamViewer 15.78.4.0 changelog: Improvements Permissions inheritance has been improved, increasing reliability when permissions are assigned to user group managers. Bugfixes Fixed a bug where 'Show details' button was not showing up on command bar upon selection of a device group. Fixed a bug which was causing the legacy groups to disappear when applying hide offline filter in basic view. Fixed a bug where devices were loading infinitely after login. Fixed a bug which was causing crash in application. Download: TeamViewer 15.78.4.0 | 32-bit | Portable | Mac | ~70.0 MB (Free for personal use) View: TeamViewer Home Page | Release Notes | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
  • Recent Achievements

    • One Year In
      Primer1st earned a badge
      One Year In
    • Experienced
      JayZJay went up a rank
      Experienced
    • Reacting Well
      Sir_Timbit earned a badge
      Reacting Well
    • Week One Done
      rubentuben8 earned a badge
      Week One Done
    • Week One Done
      ARaclen earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      524
    2. 2
      PsYcHoKiLLa
      232
    3. 3
      Edouard
      135
    4. 4
      ATLien_0
      88
    5. 5
      Steven P.
      82
  • Tell a friend

    Love Neowin? Tell a friend!