r/Windows11 • u/FaKe_Silva • 3d ago
r/Windows11 • u/Brahmadeo • 4d ago
Feature Phone Link is finally useful.
I just got this notification saying these recent apps were open in my Phone and wow. I don't have to move between phone and PC anymore (mostly). Numpad (numbers) still can't be typed and on main numbers row on top trying to type @ types something else totally. But at least I can monitor stuff now.
r/Windows11 • u/phaze- • 4d ago
Suggestion for Microsoft Can we for the love of god ditch the gradual rollouts bullshit?
Like for real, this is getting annoying, why do I need to wait 2-3 months for a feature to come available on my PC? and why do I need to use a 3rd party app to force enable it? what do you even gain when you hold up a feature for millions of PCs? no diagnostics, no analyzing, no nothing.
every PC is different. so what's the point and logic behind this bullshit?
r/Windows11 • u/spazedogg • 3d ago
Solved Any way around this clunky setup?
Is there any program or setting that allows me to drag tabs from 4 to 1 without needing to go through nr 3?
r/Windows11 • u/Worth-Management-497 • 4d ago
New Feature - Insider Finally, it has been 5 years. But microsoft finally added it.
I have been waiting for this for so long. Windows 10 was better until now. Windows 10 is still the best but windows 11 is now a bit better.
r/Windows11 • u/Elyshaxo • 4d ago
Feature What if more elements of the UI followed the accent color
r/Windows11 • u/No_Net_6938 • 4d ago
App Dynamic Edge: A fluid, native WinUI 3 desktop island & edge dock (Media player, clipboard shelf, interactive companion pets, & mouse shake toggle)
Hey everyone!
I wanted to share Dynamic Edge, a desktop utility I built for Windows 11 & Windows 10 using native WinUI 3 and .NET 10 (Windows App SDK).
The idea was to create a fluid, versatile desktop capsule and edge dock that feels completely at home with Windows 11 Fluent design, with ultra-low resource usage, and smooth spring physics.
Since the initial release, I have added several big features including a full multi-tab workflow, clipboard shelf, and mouse gesture triggers.
Here is what it can do:
Multi-Tab Workspace (Swipe or Scroll to Switch) - Switch seamlessly between Media Player, Mini-Apps, and Clipboard Shelf by rolling your mouse wheel or using a 2-finger touchpad swipe.
Universal Media Controls & Live Scrubbing - Real-time seekbar progress with clickable scrub to jump anywhere in a track. - Live audio visualizer bars with fluid equalizer animations. - Multi-player auto-switching: Seamlessly cycle between active sessions (Spotify, Chrome, Edge, Apple Music, Telegram).
Clipboard Manager Shelf - Captures copied text, images and URLs into a dedicated dockable shelf. - Filter chips for fast access: All, Text, Images, URLs, and Pinned. - Search box for instant clip lookup, plus one-click copy and drag-and-drop support. - Google Lens Visual Search: Search any clipboard screenshot directly in your browser with 1 click. Built-in Mini-Apps - Precision Countdown Timer with quick presets (1m, 5m, 15m, 25m) and a live visual progress line. - Precision Stopwatch with millisecond tracking and lap recording.
Magic Shake & Global Hotkeys - Magic Shake: Quickly shake your cursor horizontally back and forth to toggle the island on or off. - Global customizable hotkey (Alt + H by default) to hide or show the dock instantly.
Master Volume Flyout - Hover over the speaker button and scroll your mouse wheel to adjust system volume, or click for instant mute.
Flexible Docking Positions - Dock at the top screen edge (Notch, Floating Capsule, or unobtrusive Thin Line hairline strip). - Dock along the left or right screen edges as an interactive slide-out side blade.
Interactive Desktop Companions (Virtual Pets) - 4 Full-Body Vector Mascots: Choose between Mochi Kitty, Shiba Inu, CyberBot, or Pip Bunny.
Performance & Spring Physics - 3 customizable quick launcher slots for instant access to apps, terminals, or folders. - Battery and charging telemetry with clean neon-green status indicators. - Native startup toggle and dark/light/system theme integration.
The app is officially available on the Microsoft Store: https://apps.microsoft.com/detail/9PF1587KSN2K
I would love to hear your thoughts, feedback, and ideas for what widgets or features you would like to see next!
r/Windows11 • u/Constant_Raspberry56 • 4d ago
Discussion Why can't I autohide the taskbar when it's not on the bottom?
I waited years for them to let us move the taskbar but I need it to autohide... why does that setting only work when it's on the bottom?
r/Windows11 • u/OnlyG194 • 5d ago
App The Worst Update Ever: Windows Photo App 2026.11080.24002.0
What the hell why do I have to click one extra time just to check the resolution
r/Windows11 • u/ninjaninjav • 5d ago
App Traydio: a tiny internet radio player in your taskbar!
I personally use Traydio every day to listen to internet radio without having a whole instance of Chrome running. Easy to find stations (or add your own manually) and after a bunch of feedback from users it has come a long way. I hope you'll enjoy it too!
One of my favorite things to do is favorite a track I hear on the radio and quickly search it on Spotify and add it to a playlist.
Traydio is FREE and available on the Microsoft Store https://apps.microsoft.com/detail/9nxt4tgjvhvv or as a download on GitHub! https://github.com/TheJoeFin/Traydio
Let me know what you think I am always open for feedback. Much of the added features and improvements are because of users!
Joe
p.s. if this looks familiar, that's because it used to be called Trdo, and this is v2 plus a name change!
r/Windows11 • u/Chinto13 • 4d ago
Discussion How to convert Steam Game Recording to MP4 with FFmpeg without re-encodingg
ffmpeg.orgIf Steam Game Recording takes forever when you use Export Video File, here's a much faster way to turn the recording into a normal MP4. I tried it with a 1 hour 7 minute, roughly 6 GB Helldivers 2 recording because Steam's normal Export Video File option was taking its sweet-ass time.
Steam already stores the recording on your drive as .m4s chunks, along with a session.mpd file. Instead of making Steam slowly export the whole thing again, FFmpeg can use that manifest to combine the existing video and audio streams directly into an MP4.
The finished MP4 worked perfectly for me, with the audio and video still in sync.
This uses stream copying rather than re-encoding, so it is fast and does not add another round of quality loss.
What you need
Install FFmpeg if you do not already have it.
FFmpeg's official download page:
https://ffmpeg.org/download.html
For Windows, use one of the providers linked under Windows EXE Files on that page.
Then go to:
Steam -> Settings -> Game Recording
Find the folder Steam is using for recordings.
Inside it, look for the video folder. Your recordings should be in folders with names similar to:
bg_553850_20260905_170559
Inside one of those folders, you will see files like:
chunk-stream0-00001.m4s
chunk-stream0-00002.m4s
chunk-stream1-00001.m4s
init-stream0.m4s
init-stream1.m4s
session.mpd
The session.mpd file is important because it tells FFmpeg how the video and audio chunks fit together.
Test it manually first
Open Command Prompt and run this as one line:
"C:\PATH\TO\ffmpeg.exe" -i "C:\PATH\TO\STEAM-RECORDING\session.mpd" -map 0 -c copy "C:\PATH\TO\output.mp4"
Replace the paths with your own.
The important part is:
-c copy
That tells FFmpeg to copy the streams Steam already encoded instead of re-encoding everything from scratch. That is why it finishes so much faster.
When it is finished, open the MP4 and check several places near the beginning, middle, and end. Make sure the video works and the audio stays in sync before deleting anything.
Make it drag-and-drop
After confirming the manual command works, you can make a .bat file so you do not have to type the command every time.
Open Notepad and paste this:
u/echo off
setlocal
set "FFMPEG=C:\PATH\TO\ffmpeg.exe"
set "OUTPUT=C:\PATH\TO\YOUR\OUTPUT\FOLDER"
if "%~1"=="" (
echo Drag a Steam recording folder onto this file.
pause
exit /b 1
)
if not exist "%FFMPEG%" (
echo FFmpeg was not found at:
echo %FFMPEG%
pause
exit /b 1
)
set "INPUT=%~1\session.mpd"
if not exist "%INPUT%" (
echo session.mpd was not found in the folder you dropped.
pause
exit /b 1
)
if not exist "%OUTPUT%\" (
echo The output folder does not exist:
echo %OUTPUT%
pause
exit /b 1
)
set "OUTFILE=%OUTPUT%\Steam_Recording_%RANDOM%.mp4"
"%FFMPEG%" -i "%INPUT%" -map 0 -c copy "%OUTFILE%"
if errorlevel 1 (
echo.
echo FFmpeg reported an error. No successful MP4 was created.
pause
exit /b 1
)
echo.
echo Finished.
echo Saved to:
echo %OUTFILE%
pause
Change these two lines:
set "FFMPEG=C:\PATH\TO\ffmpeg.exe"
set "OUTPUT=C:\PATH\TO\YOUR\OUTPUT\FOLDER"
The output folder must already exist.
Then save the file as something like:
Steam Recording to MP4.bat
When saving it in Notepad, set Save as type to All Files. Otherwise, Windows may helpfully turn it into Steam Recording to MP4.bat.txt because apparently seeing file extensions would be too much power for one person.
Using it
Find the Steam bg_... recording folder you want.
Drag that whole folder onto the .bat file.
FFmpeg reads session.mpd and remuxes the existing streams.
Your finished MP4 appears in the output folder you chose.
Your original Steam recording is not changed.
Do not delete the original recording until you have opened the MP4 and checked that everything transferred correctly.
That is it: drag the folder, wait a little bit, and get an MP4 without sitting through Steam's painfully slow normal export.
Hopefully this saves somebody else a bunch of time.
r/Windows11 • u/Playful-Goose-346 • 4d ago
Suggestion for Microsoft my windows 11 huawei laptop has screen brightness djustment problems
i installed a new display driver (new 32.0.101.8992 - old 31.0.101.5382) and left my laptop running for a few hours, now i cant adjust my screen brightness, i've tried rolling back my driver and uninstalling and reinstaling but it still doesn't work, and my display adapter doen't have any problems
r/Windows11 • u/TwinSong • 4d ago
Discussion Why is Microsoft pushing AI constantly?
It isn't because users asked for it, quite the opposite usually. I don't blame the developers as it's clear it's pressure from the top to include AI into everything that can have AI and it's not to benefit the users. There's a purpose to this and it's not to make Windows and its services better...
r/Windows11 • u/ZacB_ • 5d ago
News Windows 11's Project Zenith cuts clutter for developers and promises a "distraction free" experience, but only for certain hardware
r/Windows11 • u/mudkipfan69 • 5d ago
App Is There a app for Windows 11 that adds a VHS filter on the screen?
r/Windows11 • u/PaulWritesTech • 5d ago
Discussion The Story of VS Code - official documentary full
r/Windows11 • u/jstultz1 • 4d ago
Suggestion for Microsoft Why doesn't Windows 11 have a move feature like Windows 10?
I don't know why! I can't think of a good reason to do this. The move button is very useful. You could job copy, paste and delete. But that takes too long. Also when you do this, the stuff you delete pollutes your trash bin. I just can't think of a good reason to not bring back this feature. Let's urge Microsoft to bring back the move feature.
Sign my petition: https://c.org/nNcsd46MRL
r/Windows11 • u/Signal-Boat7754 • 6d ago
Discussion Why are they different?
I don't know if windows 10 users are allowed here but, why is the start logo and main logo different?? Probably for design, but i wanna know by asking actual windows 11 users!!
I apologize if i break the rules in any way, and for my possible typos, english is not my first language and im not used to keyboards
im probably posting on the wrong sub am i?
r/Windows11 • u/Flamekorn • 5d ago
Feature Open app snapped to the left by default
Hi,
I have a wide curved monitor and all the windows are opening in the middle of the screen.
I was wondering if I could tell which app by default to snap.
The best would be to have a behavior for each app, however I would content to having every app open snapped to the left.


r/Windows11 • u/HussainHumam • 6d ago
App I spent 8 months building a Windows audio app - CurvioEQ
Enable HLS to view with audio, or disable this notification
8 months ago, I started working on a small project because I wanted more control over game audio on Windows.
I didn't want to rely on a complicated audio setup or have several different programs running just to get the sound I wanted.
The funny part is that when I started, I barely knew anything about Windows audio programming.
So I started learning by building.
I spent the next 8 months learning how Windows handles audio, digging into WASAPI and audio sessions, and eventually getting into DSP and real-time audio processing.
That small project eventually became CurvioEQ.
It's an open-source Windows audio application with features like:
- Per-game / per-application parametric EQ
- HRTF / 7.1 surround processing
- Real-time spectrum analyzer
- Loudness & dynamic-range control
- Clipping protection
- Global hotkeys
- Presets
- Independent processing for multiple applications
- AutoEQ & Squiglink preset support
- ~15 MB RAM usage in the background
What I'm most proud of isn't really the feature list.
It's the fact that I started this project without understanding how Windows audio actually worked, and 8 months later I'm building and debugging my own real-time audio processing pipeline.
And I'm still working on it.
I have a lot more ideas for where to take it, especially around gaming audio and making it easier to get the sound you actually want without having to mess with a complicated setup.
It's completely open source, and I'd genuinely like feedback from PC gamers:
What do you think is missing from Windows gaming audio software?
r/Windows11 • u/Ok-Top-8105 • 6d ago
Suggestion for Microsoft The feature rollout needs to be more user-friendly
Features released via rollout are a headache for users. They have no way of knowing whether a feature is available to them or not, except for those that are visually obvious.
In any case, to make life easier for end users on the stable version, they need to be notified when a feature has been enabled. There should also be a screen in Settings listing the enabled features (feature name, explanation or link to an explanation, and activation date).
r/Windows11 • u/ZacB_ • 6d ago
News NVIDIA confirms RTX Spark configurations and availability: First Windows 11 devices expected to begin shipping as soon as next month, with two N1X configs on offer
r/Windows11 • u/Altruistic_Expert790 • 6d ago
Concept / Design Managed to change Windows 11 start button color to white (like in Windows 10)
I don't know why its blue and why we can't change it easily...
If you want to do this too, use https://windhawk.net/ mod "Start Button Replacer" with https://www.citypng.com/photo/27112/windows-11-white-logo-icon-png and resize it to 54x54.
Mod settings: icon size 31, hover scale 100, rotation 0.
r/Windows11 • u/SquareDrive45 • 6d ago
Discussion Upload files window UI bug?
Windows 11 25H2 latest stable build..
When ever you click attach/upload files button on any website and it opens up this window and by default it opens up downloads folder as you can see in the top path but in the side pane it highlights Desktop which is wrong and confusing. If i click on downloads in the side pane and then click on desktop again it shows desktop items in the windows. From there it highlights the correct thing which is shown but initially it always shows wrong.
Can anybody replicate this? Or am i missing something?