Searching We.Love.Privacy.Club

Twts matching #color
Sort by: Newest, Oldest, Most Relevant

Linux 7.1 Adding DRM Dedicated CRTC Background Color Property
Sent out today was the latest weekly round of drm-misc-next patches for queuing ahead of the Linux 7.1 merge window that is set to happen in mid-to-late April… ⌘ Read more

⤋ Read More

Court Rules TCL’s ‘QLED’ TVs Aren’t Truly QLED
A German court ruled that TCL misled consumers by marketing certain TVs as “QLED” when they “do not deliver the color reproduction expected from QLED TVs.” It has ordered the company to stop advertising or selling those models in Germany. TechRadar reports: The case was filed by Samsung, which claimed that TCL was running deceptive advertising, and more court cases on the same topic are … ⌘ Read more

⤋ Read More

AMD HDR/Color Improvement For Their Linux Driver & KDE - Co-Developed By Claude Code
Introduced with Linux 6.19 was the long in development DRM Color Pipeline API while it’s not the end of the road yet on enhancing the Linux desktop for modern high dynamic range (HDR) displays and color pipeline handling. AMD engineer Harry Wentland has more improvements pending for the AMDGPU driver as well as example compositor/desktop-side integration with KDE’s KWin… ⌘ Read more

⤋ Read More

Now that Winter has come to an end, I’m realizing that the default amber color scheme of my widget toolkit might be problemaic.

Readability isn’t great when the sun is blasting through the windows. 🥴

I should probably make this full themeable by the user …

(Haven’t worked on this code in a month, sadly.)

⤋ Read More

Mozilla Is Working On a Big Firefox Redesign
darwinmac writes: Mozilla is working on a huge redesign for its Firefox browser, codenamed “Nova,” which will bring pastel gradients, a refreshed new tab page, floating “island” UI elements, and more. “From the mockups, it appears Mozilla took some inspiration from Googles Material You (or at least, the dynamic color extraction part of it) because the browser color accent appears influ … ⌘ Read more

⤋ Read More

The Government Just Made it Harder to See What Spy Tech it Buys
An anonymous reader shares a report: It might look like something from the early days of the internet, with its aggressively grey color scheme and rectangles nested inside rectangles, but FPDS.gov is one of the most important resources for keeping tabs on what powerful spying tools U.S. government agencies are buying. It includes everything from pho … ⌘ Read more

⤋ Read More

GNOME 50 Lands Updated Wayland Color Management v2 Support
Following GNOME 50’s Mutter merging sdr-native color mode support for wide color gamut displays this week, another late addition to Mutter has now been merged ahead of next month’s GNOME 50 stable release… ⌘ Read more

⤋ Read More

Dell UltraSharp U5223KW: An Outstanding 52-Inch 6K Monitor With Extensive Connectivity
Earlier this month Dell sent over a review sample of their new UltraSharp U5223KW monitor. While the model number may not imply much, this monitor is outright incredible. The Dell UltraSharp U5223KW is a 52-inch 6K @ 120Hz monitor with integrated USB hub also working as a KVM switch, 140 Watt power delivery support for USB-C/Thunderbolt laptops, 2.5G Ethernet, and the color reproduction and visuals with this Dell 6K monitor ar … ⌘ Read more

⤋ Read More

GNOME 50 Merges “sdr-native” Color Mode Support For Wide Color Gamut Displays
As a late stage change for GNOME 50 ahead of its official debut next month and following last week’s GNOME 50 beta is plumbing the Mutter compositor for a new “sdr-native” color mode option… ⌘ Read more

⤋ Read More

Linux 6.19 Released With Better Support For Older AMD GPUs, DRM Color Pipeline API
As anticipated due to the extra week for the cycle given end of year holidays, Linus Torvalds today released the Linux 6.19 stable kernel as the first major release of 2026. There is a lot in store with this early 2026 kernel release… ⌘ Read more

⤋ Read More

Krita 6.0 Beta Released - Using Qt6 & Wayland Color Management Support
The first beta release of Krita 6.0 is now available for this featureful digital painting program. Krita 6.0 is re-based against the Qt6 toolkit while Krita 5.3 Beta is also being released at the same time for those sticking to Qt5… ⌘ Read more

⤋ Read More

Google Temporarily Disabled YouTube’s Advanced Captions Without Warning
Google has temporarily disabled YouTube’s advanced SRV3 caption format after discovering the feature was causing playback errors for some users, according to a statement the company posted. SRV3, also known as YouTube Timed Text, is a custom subtitle system Google introduced around 2018 that allows creators to use custom colors, tran … ⌘ Read more

⤋ Read More

Ultimate Camouflage Tech Mimics Octopus In Scientific First
Researchers at Stanford University have created a programmable synthetic “skin” that can independently change color and texture, “a feat previously only available within the animal kingdom,” reports the Register. From the report: The technique employs electron beams to write patterns and add optical layers that create color effects. When exposed to wate … ⌘ Read more

⤋ Read More

I think my widget toolkit will have an amber theme by default:

My first PC had a monochrome amber screen and I just love looking at this. 😃

(It looks even better with redshift enabled, but I can’t screenshot that.)

Only downside is that there aren’t that many amber shades in the standard 256 color palette. Or well, maybe that’s actually a good thing, as it probably helps to keep the theme more minimal and less cluttered/noisy. 🤔

⤋ Read More

DRM Splash Screen Updated To Simply Drawing A Colored Background, Displaying A BMP Image
Back in October was an initial proposal for a DRM splash screen client for the Linux kernel that would be primarily useful for embedded systems for rendering a simple “splash screen” when updating the system firmware/software, early display activation at boot, during system recovery, or similar processes. Sent out today was a second revision to the DRM splash screen code… ⌘ Read more

⤋ Read More

Trump Organization’s $499 Smartphone Delayed Again, Now Until the End of January
Last June the Trump organization announced sales of a $499 “T1” smartphone with a gold-colored case. But though they originally were scheduled for release in August, this week a customer service representative for the wireless carrier told CBS News the device will be pushed back again, now until the end of January, “ … ⌘ Read more

⤋ Read More
In-reply-to » On my way to having windows and mouse support:

At around 19 seconds in the video, you can see some minor graphical glitches.

Text mode applications in Unix terminals are such a mess. It’s a miracle that this works at all.

In the old DOS days, you could get text (and colors) on the screen just by writing to memory, because the VGA memory was mapped to a fixed address. We don’t have that model anymore. To write a character to a certain position, you have to send an escape sequence to move the cursor to that position, then more escape sequences to set the color/attributes, then more escape sequences to get the cursor to where you actually want it. And then of course UTF-8 on top, i.e. you have no idea what the terminal will actually do when you send it a “🙂”.

Mouse events work by the terminal sending escape sequences to you (https://www.xfree86.org/current/ctlseqs.html#Mouse%20Tracking).

ncurses does an amazing job here. It’s fast (by having off-screen buffers and tracking changes, so it rarely has to actually send full screen updates to the terminal) and reliable and works across terminals. Without the terminfo database that keeps track of which terminal supports/requires which escape sequences, we’d be lost.

But gosh, what a mess this is under the hood … Makes you really miss memory mapped VGA and mouse drivers.

⤋ Read More
In-reply-to » @lyse You actually have a Markdown parser/renderer in there? Oh dear. I would have been (well, I am) way too lazy for that. 😅

@movq@www.uninformativ.de Well, just a very limited subset thereof:

  1. inline and multiline code blocks using single/double/triple backticks (but no code blocks with just indentation)
  2. markdown links using using [text](url)
  3. markdown media links using ![alt](url)

And that’s it. No bold, italics, lists, quotes, headlines, etc.

Just like mentions, plain URLs, markdown links and markdown media URLs are highlighted and available in the URLs View. They’re also colored differently, similarly to code segments.

I definitely should write some documentation and provide screenshots.

⤋ Read More

Hurray, I finally fixed another rendering bug in tt that was bugging me for a long time. Previously, when there were empty lines in a markdown multiline code block, the background color of the code block had not been used for the empty lines. So, this then looked as if there were actually several code blocks instead of a single one.

⤋ Read More

Shotcut 25.12 Released With 10-bit Video CPU Pipeline, Linear Color Processing
December happens to be a busy month for video editor releases in the open-source world. This month there’s been the release of Flowblade 2.24, OpenShot 3.4, Kdenlive 25.12, and now there is Shotcut 25.12 before closing out the month and year… ⌘ Read more

⤋ Read More

Linux 6.19 Features: LUO, PCIe Link Encryption, ASUS Armoury, DRM Color Pipeline API & More
With Linux 6.19-rc1 released, the merge window for Linux 6.19 has now concluded. Here is a summary of the interesting Linux 6.19 new features and changes with this kernel version. ⌘ Read more

⤋ Read More

Wayland Protocols 1.47 Released With Updated Color Management Protocol
Following the Color Management protocol introduced in Wayland Protocols 1.41, out today is Wayland Protocols 1.47 with various revisions to that color management and HDR support… ⌘ Read more

⤋ Read More

**1boy 1girl 2025 51mpcameraman(skibidi_toilet) ambiguous_penetration artist_signature background bestiality_impregnation big_ass big_breasts big_thighs black_body black_skin black_skinned_female breasts breasts_out ch4dcameraman(skibidi_toilet) color colored colored_art commission commission_art completely_nude completely_nude_female cum cum_drip cum_dripping cum_inside cum_leak cum_leaking curvy dark-skinned_female ejaculating ejaculating_cum ejaculation equine equine_penis female_humanoid female_humanoid/mal … ⌘ Read more

⤋ Read More

KDE Plasma 6.6 Supporting Per-DRM-Plane Color Pipelines, More Hardware Quirks/Fixes
It was a busy start of December for KDE Plasma developers in working out several hardware fixes for the current Plasma 6.5 series while also working on new Plasma 6.6 features like the per-DRM-plane color pipelines… ⌘ Read more

⤋ Read More

Intel Graphics Score A Big Win With Linux 6.19: Color Management & Xe VFIO Driver Merged
On top of enabling Xe3P graphics for Nova Lake and Crescent Island plus other changes like CASF adaptive sharpening for Lunar Lake and newer, another set of Intel kernel graphics driver updates were merged overnight as a big win for the open-source Intel graphics stack on Linux… ⌘ Read more

⤋ Read More

Linux 6.19 GPU Driver Features: Color Pipeline API, Intel Xe3P, AMDGPU For GCN 1.0/1.1
The big set of kernel graphics driver features were merged today for the Linux 6.19 kernel. As usual there is a lot of new feature work on the AMD Radeon, Intel, and NVIDIA graphics drivers plus the smaller Arm/embedded graphics like now having initial Qualcomm Gen8 GPU support. Plus the growing number of accelerator “accel” drivers for NPUs / AI accelerators… ⌘ Read more

⤋ Read More

Valve-Backed Color Pipeline API For Linux Is Finally Ready For Upstream
For those Linux desktop users in the US needing another reason to be thankful this Thanksgiving, a huge and long-awaited accomplishment is ready for merging to the kernel: the Color Pipeline API that is important for HDR is ready for merging! As of last night the code is queued in DRM-Misc-Next for this years-in-the-making effort… ⌘ Read more

⤋ Read More

Amazon Discounts USB-C AirPods Max to $399.99
Amazon today has the USB-C AirPods Max on sale for $399.99 in Starlight, down from $549.00. This is a match of the best price we’ve ever seen on the AirPods Max, and we expect more colors to match this price soon.

Image

_Note: MacRumo … ⌘ Read more

⤋ Read More

Wayland Protocols 1.46 Released With New Experimental Additions
Wayland Protocols 1.46 released this evening with new experimental protocols for text improvements as well as refinements to the color management protocol for HDR… ⌘ Read more

⤋ Read More

Blender 5.0 Released
Blender 5.0 has been released with major upgrades including HDR and wide-gamut color support on Linux via Wayland/Vulkan, significant theme and UI improvements, new color-space tools, revamped curve and geometry features, and expanded hardware requirements. 9to5Linux reports: Blender 5.0 also introduces a working color space for Blend files, a new AgX HDR view, a new Convert to Display compositor node, new Rec.2100-PQ and Rec.2100-HL … ⌘ Read more

⤋ Read More

Grab a Fun  Beijing Wallpaper from Apple to Celebrate a New Store Opening
Apple is opening a new store in Beijing China, and to celebrate they have released a series of wallpapers for Mac, iPhone, and iPad. The wallpaper features the retro six-color  Apple logo with some embellishments and patterns, giving it both a retro and modern feel. You can snag the wallpaper below by clicking on … [Read More](https://osxdaily.com/2025/11/18/grab-a-fun-%ef%a3% … ⌘ Read more

⤋ Read More
In-reply-to » @lyse wow, 31 is truly a telling! Interesting facade on that building on 10! And that roof on 51, oh my! The golden Jesus and tower on 7 are something else too.

@bender@twtxt.net Glad you like them! :-) Those colorful roof shingles are absolutely stunning. The golden building has quite a few folds in the facade skin, from the other sides a bit more. Check out this:

Image

Luckily, there weren’t this many people around today. :-)

Don’t think this is the norm, though, most stuff here is also much more modern. There are not a whole lot of historic buildings left. And if there are, they’re not necessarily kept in good shape. But some are. So, don’t be fooled by my biased preselection of typically photographing the nicer ones.

The people photos are not for the internet. ;-) But I get your point, the reason why I ended up in that town is irrelevant and misleading, I should have introduced it differently. :-D

⤋ Read More

Apple Begins Selling Some Third-Party Accessories in ‘Dark Cherry’ Color
Apple has teamed up with a handful of accessory makers to offer charging stands, cables, a power bank, a laptop sleeve, and more in a Dark Cherry color.

Image

The range of Dark Cherry accessories were added to Apple’s online store this week in the U.S. and many other countries, with delivery and in-store pickup available.

Participating brand … ⌘ Read more

⤋ Read More

How to Make Icons Clear in iOS 26 for iPhone & iPad
The Liquid Glass interface of iOS 26 makes everything more transparent, and you can bring that effect to your Home Screen icons too by making them clear. The clear icon look offers a dramatic visual change to the icons on your iPhone or iPad, stripping them of the usual bright neon colors and transforming them … Read MoreRead more

⤋ Read More

Non-harmonic two-color femtosecond lasers achieve 1,000-fold enhancement of white-light output in water
Scientists at Japan’s Institute for Molecular Science have achieved a 1,000-fold enhancement in white-light generation inside water by using non-harmonic two-color femtosecond laser excitation. This previously unexplored approach in liquids unlocks new nonlinear optical pathways, enabling a dramatic boost in supercontinuum generation. The breakthrough lays a foundation for next-generation b … ⌘ Read more

⤋ Read More