Recommended Posts

i like it. nice grey theme.  too bad my unselected firefox tabs are hard to read now. grey on lighter grey.

good to see resurse kit too. now cmon kids make some mods

586005637[/snapback]

I find this one works pretty nicely with it..

http://www.deviantart.com/deviation/13453010/

I find this one works pretty nicely with it..

http://www.deviantart.com/deviation/13453010/

586010300[/snapback]

yeah this one looks pretty good. thanks

Hi Valkyre,

Please note a little bug in the Compact version. The Lauchbar only hold 3 visible icons while the normal version can hold 4 visible icons for the same space.

586013138[/snapback]

not very compact at all. i had to widen it - first vs ever where i had to set it so wide to fit 6 icons.. need a fix.

I found three little quirks/bugs to poke at. I'd help, but I really don't know enough about the msstyles format to even begin to help. And yeah, even with these little quirks, I'm using this theme (and loving it) - usually themes with this kinda stuff head straight to my Trash bin ;) Oh yeah, for anyone wanting a Winamp skin, the City Night color theme for the WA5 Modern skin works quite well.

1: Can't resize using the upper edge of the window, or the left/right upper corners. I think Stefanka's Royale Inspirat and the Inspirational Royale mod of it suffer from the same problem. I'm under the impression that it's a heck of a lot of work to fix it, though :cry:

2: Minimized MDI windows with restore and maximize on them use the same pixmap. It's just a little weird.

3: Can't read the subtitle text in the XP Start Panel entries for Internet/Email. Alright, now I'm just getting nitpicky. Somebody slap me :rolleyes:

Edited by vertigosity

When you update it , please give us version numbers to go by so we'll know if it's been changed, especially if you decide to change stuff.

I'm really digging this theme, it works better than most other themes, because it's closer to luna i guess. or you're just really good.

Anyway The gray shade is so nice and I don't even have a bug with the MSN deskbar like I do on almost all other themes !

toastyghost; Still shows up as 'BlackMesa' in 'Appearance', with the BlueMesa substyle.  Might wanna change that.

586021458[/snapback]

Woops, thanks. Fixed and re-uploaded.

tight vs man... quick question, how did you changed the color of the text in the detail box of the shellstyle?? have asked in the forum but no one qiven me an answer

586021492[/snapback]

Someone told him how to on DeviantArt, I'll just copy and paste it.

1: The black text in the details box in the shellstyle. Could not figure out how to change this, if it was at all possible.

at the very end/bottom of UIFILE1 you'll find this:
(I hope all this shows up right - *crosses fingers that DevArt doesnt strip any of the tags*)

/style
style resid=NameSpaceItemInfoList
NameSpaceItemInfo
{
contentalign: wrapleft;
background: argb(0,0,0,0);
margin: rect(0rp,5rp,0rp,0rp);
}
NameSpaceItemInfo [id=atom(InfoName)]
{
fontweight: rcint(10);
}
NameSpaceItemInfo [id=atom(InfoType)]
{
margin: rect(0rp,0rp,0rp,0rp);
}
/style

add a line after each 'margin: etc" so it looks like this

/style
style resid=NameSpaceItemInfoList
NameSpaceItemInfo
{
contentalign: wrapleft;
background: argb(0,0,0,0);
margin: rect(0rp,5rp,0rp,0rp);
foreground: white;
}
NameSpaceItemInfo [id=atom(InfoName)]
{
fontweight: rcint(10);
}
NameSpaceItemInfo [id=atom(InfoType)]
{
margin: rect(0rp,0rp,0rp,0rp);
foreground: white;
}
/style

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

    • No registered users viewing this page.
  • Posts

    • Meta will now use data from outside businesses to personalize AI responses by David Uzondu In an update that's rolling out globally (except in a handful of countries), Meta will use your data from outside businesses to personalize your AI responses and your primary feeds. Meta already utilizes your shopping activity to target ads, but the company now plans to expand this tracking to personalize other "parts of your experience" like feed algorithms and AI assistant chats. The company is replacing the two settings ("Your activity off Meta technologies" and "Activity from other businesses") that currently let you disconnect off-platform activity with a single, renamed setting called Activity from other businesses. If you don't want Meta to manipulate your feed and AI responses using your outside history, you can just turn the Activity from other businesses setting off in your account settings. This toggle resides within your Accounts Center, applying your choice to every connected profile. Turning this off will not stop companies from sending your data to Meta. The company will still collect your web interactions, but it only uses them to train products, while still accessing external accounts you connect. When The Verge spoke to Meta spokesperson, Emil Vazquez, the representative said that this update will exclude several locations at launch including the European region, the UK, Brazil, Thailand, South Africa, Turkey, South Korea, Ecuador, Nigeria, and Kenya. The new update comes at a time when the social media giant is recovering from a major PR disaster involving generative AI. Last week, there was a huge security issue on Instagram where attackers figured out a way to exploit a prompt injection vulnerability. Hackers managed to trick Meta AI into handing over account ownership (even if the victim had 2FA enabled). Some of the affected accounts include the dormant Obama White House profile, cosmetics brand Sephora, the Chief Master Sergeant of the Space Force, and security researcher Jane Manchun Wong. Internally, the company also had to scale back plans on its Model Capability Initiative (MCI), an employee-monitoring program designed to train corporate AI models by recording worker keystrokes and screen activity, after employees raised privacy concerns and complained about severe battery life drain.
    • 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.
  • 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
      512
    2. 2
      PsYcHoKiLLa
      229
    3. 3
      Edouard
      134
    4. 4
      ATLien_0
      87
    5. 5
      Steven P.
      80
  • Tell a friend

    Love Neowin? Tell a friend!