Plasma 6: display brightness changes on its own
Hi, please kindly direct me to the right community to ask this:
Plasma 6 is my favorite DE and i use KDE neon.
The screen brightness adapts automatically to the windows i focus on, which is a good idea. But it does that the wrong way IMO. Dark windows are dimmed and bright windows are lit up. Why? Now i have both extremes switching back and forth all the time. Can we turn that the other way around or turn it off please?
I like that the screens hardware brightness setting is used now from the desktop. Great! But now i have no control over it anymore, since when i open a bright window, the brightness setting goes up too. I hate that at night.
Usually adjusting the brightness for me has one purpose:
- bright room: max display brightness (day)
- dark room: min display brightness (night)
...maybe something in between for transition.
All the other features are nice to have but please only work on them when this main feature is secured.
like this
AI applications are producing cleaner cities, smarter homes and more efficient transit
AI applications are producing cleaner cities, smarter homes and more efficient transit
AI-powered systems can help manage energy grids, building temperatures and predict weather to store and use energy more efficiently.The Conversation
AI applications are producing cleaner cities, smarter homes and more efficient transit
AI applications are producing cleaner cities, smarter homes and more efficient transit
AI-powered systems can help manage energy grids, building temperatures and predict weather to store and use energy more efficiently.The Conversation
AI search finds publishers starved of referral traffic
The AIpocalypse is here for web sites as search referrals plunge
: Turn out the lights, the internet is overThomas Claburn (The Register)
adhocfungus likes this.
Broadcom's answer to VMware pricing outrage: You're using it wrong
Customers dismayed by Broadcom's move to selling costly bundles such as VMware Cloud Foundation (VCF) will realize its value if they'd just use more of the components, the company's CTO says.VMware, now a Broadcom subsidiary, is shifting away from selling perpetual licenses for individual products. It instead offers subscription bundles of software and support, such as its flagship VCF private cloud platform – version 9 of which was released this week.
The largest enterprise users seem content with this. Broadcom chief Hock Tan told investors this month that 87 percent of VMware's top 10,000 customers have signed up for VCF.
However some smaller and middle sized customers reacted negatively to the licensing changes, claiming their costs have increased by eight to 15 times since the Broadcom acquisition, and there are many stories of firms planning to migrate their workloads from VMware to an alternative platform in future because of this.
"A lot of those stories around cost don't play out when we actually get to sit down with the customer and talk to them about their situation, what they need, and what we're going to do with them," said Broadcom's EMEA chief technology officer, Joe Baguley.
"Initially people might go 'all the prices have gone up,' but those 87 percent of people that have renewed with us have renewed because they've chosen VCF as their strategy going forward," he claimed.
Broadcom's answer to VMware pricing outrage: You're using it wrong
: VCF bundle is worth it if you make the most of every part, says CTODan Robinson (The Register)
adhocfungus likes this.
I installed Openmediavault on a computer recently, what should I do next?
I picked up an old optiplex I'm trying to use as a NAS and do other things with. Initially I put Debian on there but felt like I was running into too many problems with things like power management, remot desktop, Docker, and mounting drives.
So I put Openmediavault on there and it's working now. But what are some of the best ways to get the most out of it?
Can I do most things through the browser interface, or should I remote into it to install things?
How easily can I mount it as a network drive to other computers? I still have a Windows PC so I'd like to access it from there too if possible.
And what's the best way to get other services running on it? I'm thinking of how it's possible to set up torrenting software and control it with a remote app from your phone. (For managing and sharing my distros, of course).
Happy to hear any feedback on what people do with OMV, or their setups for a NAS in general. This is more of a tinkering computer to get me more familiar with networks and Linux.
like this
You should be able to do everything through the web interface.
You can make network shares by creating shared folders under Storage->Shared Folders then configure your Windows shares through Services->SMB/CIFS
Install the openmediavault-compose plugin to manage your docker containers.
I would also suggest installing the openmediavault-wireguard plugin for secure remote access to your services from outside your network.
Col. Jacques Baud: America Bombs Iran’s Nuclear Facilities
- YouTube
Profitez des vidéos et de la musique que vous aimez, mettez en ligne des contenus originaux, et partagez-les avec vos amis, vos proches et le monde entier.www.youtube.com
DNS Black-holing w/ DNS over TLS - Personal Privacy Part 1
So DNS Black-holing is not new obviously, and what stands out as the go to solution? Pihole probably... and yeah thats what im using because hey its a popular choice. Though I am running it in docker. Combining that with Unbound (also in docker), and configuring outbound DNS to use DNS over TLS, with a few additional minor tweaks, but otherwise mostly standard configuration on both.
Wondering what you guys might be using, and if you are using Pihole and/or Unbound if you have any tips on configuration.
Happy to share my config if there is interest.
like this
If you don't mind DM'ing me or dropping it in a comment here it would be greatly appreciated! The docker engine isn't something entirely new to me so i'm a bit skeptical into thinking that i missed something but always happy to compare with others, actually Docker is what pushed me to switch fully to Linux on my personal computers.
Snippet from my docker-compose.yml:
pihole:
container_name: pihole
hostname: pihole
image: pihole/pihole:latest
networks:
main:
ipv4_address: 172.18.0.25
# For DHCP it is recommended to remove these ports and instead add: network_mode: "host"
ports:
- "53:53/tcp"
- "53:53/udp"
- "127.0.0.1:67:67/udp" # Only required if you are using Pi-hole as your DHCP server
- "127.0.0.1:85:80/tcp"
- "127.0.0.1:7643:443"
environment:
TZ: 'America/Vancouver'
FTLCONF_webserver_api_password: 'insert-password-here'
FTLCONF_dns_listeningMode: 'all'
# Volumes store your data between container upgrades
volumes:
- './config/pihole/etc-pihole:/etc/pihole'
- './config/pihole/etc-dnsmasq.d:/etc/dnsmasq.d'
- '/etc/hosts:/etc/hosts:ro'
# https://github.com/pi-hole/docker-pi-hole#note-on-capabilities
cap_add:
- NET_ADMIN # Required if you are using Pi-hole as your DHCP server, else not needed
- CAP_SYS_TIME
- CAP_SYS_NICE
- CAP_CHOWN
- CAP_NET_BIND_SERVICE
- CAP_NET_RAW
- CAP_NET_ADMIN
restart: unless-stopped
labels:
- "traefik.enable=true"
- "traefik.http.routers.pihole.rule=Host(`pihole.my.domain`)"
- "traefik.http.routers.pihole.entrypoints=https"
- "traefik.http.routers.pihole.tls=true"
- "traefik.http.services.pihole.loadbalancer.server.port=80"
- "traefik.http.routers.pihole.middlewares=fail2ban@file"
unbound:
image: alpinelinux/unbound
container_name: unbound
hostname: unbound
networks:
main:
ipv4_address: 172.18.0.26
ports:
- "127.0.0.1:5334:5335"
volumes:
- ./config/unbound/:/var/lib/unbound/
- ./config/unbound/unbound.conf:/etc/unbound/unbound.conf
- ./config/unbound/unbound.conf.d/:/etc/unbound/unbound.conf.d/
- ./config/unbound/log/unbound.log:/var/log/unbound/unbound.log
restart: unless-stopped
Edit: After re-reading the Unbound github and their documentation it seems i may have missed some volume mounts that are key to the function of Unbound, i'll definitely have to dive deeper into it.
services:
pihole:
container_name: pihole
image: pihole/pihole:latest
ports:
# DNS Ports
- "53:53/tcp"
- "53:53/udp"
# Default HTTP Port
- "8082:80/tcp"
# Default HTTPs Port. FTL will generate a self-signed certificate
- "8443:443/tcp"
# Uncomment the below if using Pi-hole as your DHCP Server
#- "67:67/udp"
# Uncomment the line below if you are using Pi-hole as your NTP server
#- "123:123/udp"
environment:
# Set the appropriate timezone for your location from
# https://en.wikipedia.org/wiki/List_of_tz_database_time_zones, e.g:
TZ: 'America/New_York'
# Set a password to access the web interface. Not setting one will result in a random password being assigned
FTLCONF_webserver_api_password: 'false cat call cup'
# If using Docker's default `bridge` network setting the dns listening mode should be set to 'all'
FTLCONF_dns_listeningMode: 'all'
FTLCONF_dns_upstreams: '127.0.0.1#5335' # Unbound
# Volumes store your data between container upgrades
volumes:
# For persisting Pi-hole's databases and common configuration file
- './etc-pihole:/etc/pihole'
# Uncomment the below if you have custom dnsmasq config files that you want to persist. Not needed for most starting fresh with Pi-hole v6. If you're upgrading from v5 you and have used this directory before, you should keep it enabled for the first v6 container start to allow for a complete migration. It can be removed afterwards. Needs environment variable FTLCONF_misc_etc_dnsmasq_d: 'true'
#- './etc-dnsmasq.d:/etc/dnsmasq.d'
cap_add:
# See https://github.com/pi-hole/docker-pi-hole#note-on-capabilities
# Required if you are using Pi-hole as your DHCP server, else not needed
- NET_ADMIN
# Required if you are using Pi-hole as your NTP client to be able to set the host's system time
- SYS_TIME
# Optional, if Pi-hole should get some more processing time
- SYS_NICE
restart: unless-stopped
unbound:
container_name: unbound
image: mvance/unbound:latest # Change to use 'mvance/unbound-rpi:latest' on raspberry pi
# use pihole network stack
network_mode: service:pihole
volumes:
# main config
- ./unbound-config/unbound.conf:/opt/unbound/etc/unbound/unbound.conf:ro
# custom config (unbound.conf.d/your-config.conf). unbound.conf includes these via wilcard include
- ./unbound-config/unbound.conf.d:/opt/unbound/etc/unbound/unbound.conf.d:ro
# log file
- /srv/docker/pihole-unbound/unbound/etc-unbound/unbound.log:/opt/unbound/etc/unbound/unbound.log
restart: unless-stopped
I am relatively new to docker as well tbh. I did a lot with virtualization and a lot with linux and never bothered, but I totally get the use case now ha. just an FYI, if you use docker on Windows it runs slower as it has to leverage the Windows subsystem Linux (WSL) and a slightly different docker engine (forget which one). So linux is your best bet. If you do want to use a full VM I found Qemu to be the best option for least resource usage.
User says access to ’30 years of photos and work’ in OneDrive denied by Microsoft, can't get a response after filing form 18 times — 'Microsoft suspended my account without warning, reason, or any leg
User says access to ’30 years of photos and work’ in OneDrive denied by Microsoft, can't get a response after filing form 18 times — 'Microsoft suspended my account without warning, reason, or any legitimate recourse'
Complains that Redmond only responds with boilerplate emails.Mark Tyson (Tom's Hardware)
like this
Spotify CEO becomes chairman of AI military business
Spotify CEO, Daniel Ek, becomes chairman of AI military start-up after €600 million investment
The company is now valued at approximately €12 billionRachael Pimblett (Far Out Magazine)
like this
US/Israel/Russia right now...
Alt Text:
Three-panel meme showing a man in military fatigues speaking in a forest setting. In the first panel, he says “The pace of oppression outstrips our ability to understand it…” In the second panel, he continues “…and that is the real trick of the Imperial thought machine.” In the third panel, he concludes “It’s easier to hide behind 40 atrocities than it is behind a single incident.”
like this
HMS Endeavour: Captain Cook’s missing ship found after sinking 250 years ago
HMS Endeavour: Captain Cook’s missing ship found after sinking 250 years ago
HMS Endeavour, which had been lost for centuries, has finally been discovered off the coast of Rhode IslandRebecca Whittaker (The Independent)
adhocfungus likes this.
I had a game of Civ where Poland declared war on me. They were on the other side of the map.
I didn't see them for 8 turns. Turn 9 I see a horde arrive on my border. Turn 10 - at the earliest opportunity they were able - they asked for peace.
I managed to sink 2 boats.
Tom Hiddleston Ritorna come Loki in Avengers: Doomsday? Ecco cosa sappiamo!
Fan dell’universo Marvel, preparatevi! Le voci sul ritorno di uno dei personaggi più amati (e odiati) sono sempre più insistenti. Stiamo parlando di Loki, l’affascinante fratello di Thor interpretato magistralmente da Tom Hiddleston. Ma cosa dobbiamo aspettarci dal suo ritorno in Avengers: Doomsday?
Tom Hiddleston Ritorna come Loki in Avengers: Doomsday? Ecco cosa sappiamo!
Loki è pronto a tornare nell'universo Marvel con Avengers: Doomsday! Tom Hiddleston stuzzica i fan con nuove anticipazioni. Scopri tutto quello che c'è da sapere!Redazione (Mister Movie)
like this
Is the LFCS worth getting?
Hey so I'm currently homeless at the moment looking for an entry level IT job. I have just enough money to purchase the RHCSA voucher ($700 CAD) but I wouldn't be able to eat lol.
The LFCS currently has a 30% discount and it was already cheaper than the RHCSA so I'm very inclined to purchase this but I'd only be doing so with the expectation that I'm able to atleast start landing interviews for help desk/tech support.
What would you guys do in my shoes? 0 interest in networking and I already daily drive Linux so I'm confident in my abilities to pass the LFCS.
reshared this
Netanyahu congratulates Trump, says US 'unsurpassed' after 'bold' attack on Iran that will 'change history'
Israeli Prime Minister Benjamin Netanyahu congratulated Donald Trump on Sunday, June 22, after the president said the US military bombed three nuclear sites in Iran. "Congratulations President Trump. Your bold decision to target Iran's nuclear facilities with the awesome and righteous might of the United States will change history," Netanyahu said in a video message, adding that the attacks demonstrated "America has been truly unsurpassed."
Netanyahu added that Trump had created a "pivot of history" that will "help lead the Middle East and beyond to a future of prosperity and peace." He shared in a separate statement that the US attacks had been carried out in coordination with Israel and said the promise of destroying Iran's nuclear program was fulfilled.
Netanyahu congratulates Trump, says US 'unsurpassed' after 'bold' attack on Iran that will 'change history'
Netanyahu added that Trump's decision to strike will 'help lead the Middle East and beyond to a future of prosperity and peace.'Le Monde with AP and AFP (Le Monde)
Gov. Greg Abbott signs bill requiring Ten Commandments to be displayed in Texas classrooms
Texas will require all public school classrooms to display the Ten Commandments under a new law that will make the state the nation's largest to attempt to impose such a mandate.
Gov. Greg Abbott announced Saturday that he signed the bill, which is expected to draw a legal challenge from critics who consider it an unconstitutional violation of the separation of church and state.
A similar law in Louisiana was blocked when a federal appeals court ruled Friday that it was unconstitutional. Arkansas also has a similar law that has been challenged in federal court.
Gov. Greg Abbott signs bill requiring Ten Commandments to be displayed in Texas classrooms
The Texas measure easily passed in the Republican-controlled state House and Senate in the legislative session that ended June 2.CBS Texas
adhocfungus likes this.
U.S. strikes 3 nuclear sites in Iran, in major regional conflict escalation
Trump initially sought to negotiate a new nuclear deal with Iran — one to replace the Obama-era agreement that he abandoned, despite Iran's apparent compliance, in 2018.
I feel like this doesnt get enough attention.
Dude threw away a winning hand and is now at the table naked.
AOC says Trump's Iran strikes "clearly grounds for impeachment"
Representative Alexandria Ocasio-Cortez, a New York Democrat, ripped President Donald Trump for his military attack against Iran on Saturday, saying the move is "absolutely and clearly grounds for impeachment."
Democrats are splintered on Trump's move to strike the Middle Eastern country amid days of back-and-forth strikes between Israel and Iran as tensions catapulted amid nuclear concerns.
Newsweek previously reached out to the White House via email for comment on the strikes.
AOC Says Trump's Iran Strikes 'Clearly Grounds for Impeachment'
President Trump announced the military action against three Iranian nuclear sites in a post on Saturday.Anna Commander (Newsweek)
adhocfungus likes this.
ruka wants to know if you'll rub her belly
my parent's old dog ruka. she lost her eye as a very young puppy before we ever met her, but she gets on fine without it.
she can catch balls out of the air no problem, but cant find them 3 inches from her face once they hit the ground. never quite understood that. she's old and tired now, with achy joints and bad hearing. she didn't want to spend much time outside today with all this heat. i make sure to give her all the belly rubs she can handle every time I see her.
"If one side is bad the other must be good, right? right? right..."
Alt Text:
REFUGEES FROM "COMMUNIST" COUNTRIES SUPPORTING FASCIST POLITICIANS IN THE WEST IN ORDER TO "STOP COMMUNISM"
looking out of a car window atWESTERNERS SUPPORTING THE "COMMUNIST" COUNTRIES IN ORDER TO "STOP WESTERN IMPERIALISM'
Who are looking back at the other carUnder you have a skeleton submerged deep into water called “Anarchists”
[solved] Is there a way to actually download a song from spotify (not just spotdl method of finding it on youtube)?
I have a specific song that doesn't seem to be on youtube. I've tried a bunch of spotify download websites plus spotdl, they all claim to find it but then the song isn't the same song (or is instrumental when it should have words).
One of my kids has asked for this for their MP3 player. I'm even happy to pay for it properly, I just can't find it anywhere except spotify. The song is this specific version of Power in Me by The Young Voices Choir: open.spotify.com/track/4xkRsdm…
Any ideas?
Edit: I managed to get the song using spotidown.app, thanks for all the suggestions!
What is the best degoogled tablet for an artist?
cross-posted from: lemmy.world/post/31808224
Please see the cross-post as it is updated.
What is the best degoogled tablet for an artistwhat is the best tablet for iodeOS, GrapheneOS and LineageOS
- with smooth stylus support that is as good as apple pen
- palm rejection
- pressure sensitive stylus
- works well for krita / excalidraw / xournalapp
- latency
- at least 16GB RAM and 256GB storageFor iodeOS, it doesn't seem to support any tablet device officially
- iodéOS official supported devices - iodéFor GrapheneOS, the only choice is google pixel tablet (or maybe pixel fold). However
- pixel tablet have latency issue
- based on Google Pixel Tablet Review - YouTube
- pixel fold does not support stylus
- workaround This Stylus Pen works with the Google Pixel Fold - YouTube
- Can someone share their GrapheneOS pixel tablet experience on krita / excalidraw / xournalapp?For LineageOS
- What tablet+stylus+LineageOS has the best performance?
- What tablet+stylus+LineageOS has the best balance between price and performance?
- Can someone share their stylus experience on krita / excalidraw / xournalapp?Sincere thanks
cross-posted from: lemmy.world/post/31808224
Please see the cross-post as it is updated.
iodéOS official supported devices - iodé
The models below are officially supported by the iodé team. Don’t see your device in the list? Don’t panic! We also support a iodéOS GSI. You can also find here a list of unofficially supported models by the iodé community.iodé
| works well for krita / excalidraw / xournalapp
Why Android though rather than Linux proper if your main apps are these?
True Promise III: Iran launches multi-warhead Kheibar Shekan missile for first time
Iran announced the first-ever launch of its multi-warhead Kheibar Shekan ballistic missile during the twentieth wave of Operation True Promise III in the early hours of Sunday.
In a statement, the public relations department of the Islamic Revolution Guards Corps (IRGC) said that this phase of the retaliatory operation marked the debut of the third-generation Kheibar Shekan ballistic missile, successfully striking its intended targets.
The twentieth wave came just hours after the United States claimed to have struck three Iranian nuclear facilities in Fordow, Natanz, and Isfahan.
According to the IRGC, a total of 40 solid- and liquid-fueled missiles were launched at strategic targets across the occupied Palestinian territories on Sunday.
True Promise III: Iran launches multi-warhead Kheibar Shekan missile for first time
Iran announced the first-ever launch of its multi-warhead Kheibar Shekan missile during the twentieth wave of Op. True Promise III on Sunday morning.PressTV
Self-Proclaimed “Peacemaker” Drags U.S. Into Another War
American warplanes bombed three nuclear sites in Iran on Saturday night, bringing the U.S. military directly into Israel’s war with Iran. “NOW IS THE TIME FOR PEACE,” President Donald Trump incongruously wrote in a social media post announcing the attacks.
Trump campaigned on ending foreign wars during his 2024 presidential run and has cast himself as a “peacemaker.” In his second inaugural address, he pledged to “measure our success not only by the battles we win, but also by the wars that we end, and perhaps most importantly, the wars we never get into.” Trump also regularly claims to have opposed the Iraq War from its outset. (He actually supported it.)
Self-Proclaimed “Peacemaker” Drags U.S. Into Another War
Heeding the request of Israel’s Prime Minister Benjamin Netanyahu, President Donald Trump dispatched U.S. warplanes to bomb Iran.Nick Turse (The Intercept)
adhocfungus likes this.
The Netherlands returns 119 stolen sculptures to Nigeria
The Netherlands has officially handed back 119 ancient sculptures stolen from the former Nigerian kingdom of Benin more than 120 years ago during the colonial era.
Olugbile Holloway, director-general of Nigeria’s National Commission for Museums and Monuments, said on Saturday that the artefacts were the “embodiments of the spirit and identity of the people from which they were taken from”.
The Netherlands returns 119 stolen sculptures to Nigeria
The Benin Bronzes were artefacts stolen during the UK’s imperial plunder of Benin, modern-day southern Nigeria.Al Jazeera
Final Nokia feature phones coming before HMD deal ends in 2026
Final Nokia Phones Coming Before HMD Deal Ends in 2026 | Nokiamob
HMD will launch a final batch of Nokia feature phones in 2025 before the licensing deal with Nokia ends in 2026. Nostalgic models like 3510 and 8310 return.Marin (Nokiamob)
Israel’s strikes on Iran follow international law, Russia’s war on Ukraine does not - Merkel
The former politician explained that the situations in Ukraine and Israel cannot be compared because Kyiv did not threaten Russia’s existence.
“I don’t quite agree that Israel does not adhere to international law. When a country’s existence is threatened by Iran or Hamas, it’s not so easy to respond strictly according to international law. If some are allowed to declare they want to destroy the state of Israel, then Israel must have the ability to defend itself,” Merkel said.
At the same time, she emphasized that Russia’s invasion of Ukraine violates international law.
Israel’s strikes on Iran follow international law, Russia’s war on Ukraine does not - Merkel
Former German Chancellor Angela Merkel stated that Israeli strikes on Iran cannot be equated with the war in Ukraine, as Russia violated the world order with its full-scale invasionEspreso TV (Espreso)
Telegram boss will leave fortune to over 100 children he fathered
Telegram boss will leave fortune to over 100 children he fathered
The technology tycoon said his children would not have access to their inheritance for 30 years.Peter Hoskins (BBC News)
James Maxton (1885 - 1946) James Maxton, born on this day in 1885, was a socialist Scottish politician, pacifist, and leader of the Independent Labour Party, a dissident working class party to the...
James Maxton (1885 - 1946)
Mon Jun 22, 1885
James Maxton, born on this day in 1885, was a socialist Scottish politician, pacifist, and leader of the Independent Labour Party, a dissident working class party to the left of the Labour Party of its day. He was also a prominent supporter of Home Rule for Scotland.
Maxton was born in the burgh of Pollokshaws (modern day Glasgow), the son of two schoolteachers. He would later become a teacher himself, joining the socialist movement after witnessing firsthand the poverty of the schoolchildren he taught.
Maxton was also a pacifist who opposed both World Wars. During World War I, he was a conscientious objector who refused conscription, and was instead given work on the barges. While there, he became involved in organizing strikes in the shipyards as part of the Clyde Workers' Committee. In 1916, Maxton was convicted of sedition and served a year in prison.
Initially serving as an MP with the Labour Party, he broke with the party under its leadership of Ramsay MacDonald, joining the Independent Labour Party (ILP) instead, later becoming its leader.
One of the best known members of the ILP, Maxton remained a prominent dissident in Parliament for the rest of his life, the only person out of 465 members of the House of Commons to vote against a Motion of Confidence in Winston Churchill's wartime government. Maxton died in 1946, still serving as MP for Bridgeton.
"In the interests of economy they condemned hundreds of children to death and I call it murder."
- James Maxton
- Date: 1885-06-22
- Learn More: en.wikipedia.org, spartacus-educational.com.
- Tags: #Socialism, #Labor, #Birthdays.
- Source: www.apeoplescalendar.org
Putin says 'all of Ukraine is ours' and threatens nuclear strike
Putin says 'all of Ukraine is ours' and threatens nuclear strike
The Russian president said he hopes Ukraine's leadership will be "guided by national interests" in negotiations.Sky News
FundMECFS likes this.
just_another_person
in reply to klay1 • • •I believe you're talking about the challenges discussed here: blogs.kde.org/2024/09/04/brigh…
If both monitors are messing with your sensors, you may just want to disable adaptive brightness and manually control it. They don't seem to have a workaround for it as of yet.
Brightness controls for all your displays
Brightness controls for all your displaysBjörn Tantau
in reply to klay1 • • •Jiří Král
in reply to Björn Tantau • • •Zamundaaa
in reply to klay1 • • •That's definitely not something Plasma is doing... Sounds like your monitor is dumb with "adaptive contrast" or just terribly implemented local dimming.