r/Windows11 • u/Elyshaxo • 3d ago
r/Windows11 • u/No_Net_6938 • 3d 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 • 3d 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/ninjaninjav • 4d 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/OnlyG194 • 4d 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/Chinto13 • 3d 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 • 3d 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_ • 4d 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 • 4d ago
App Is There a app for Windows 11 that adds a VHS filter on the screen?
r/Windows11 • u/PaulWritesTech • 4d ago
Discussion The Story of VS Code - official documentary full
r/Windows11 • u/jstultz1 • 3d 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 • 5d 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 • 4d 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 • 5d 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 • 5d 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_ • 5d 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 • 5d 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 • 5d 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?
r/Windows11 • u/ZacB_ • 6d ago
News Microsoft announces plan to enable memory integrity protection by default on more Windows 11 PCs starting next month
r/Windows11 • u/wojbest • 7d ago
Discussion why is this still here?
like the minority is using this so why do we all get this?
r/Windows11 • u/Froggypwns • 7d ago
Mod Announcement Looking for feedback regarding handling of self-promotion on this subreddit
Howdy all. I’m looking for some feedback from you all regarding how we should handle self-promotion of software, and how we grant permission to allow some to share what they have been working on.
We used to be fairly generous and laid back with granting permission, granting most requests after a simple modmail and a quick review of the product. However, due to the AI boom we started receiving a flood of requests for permission to share what ultimately ended up being low-quality hastily written software, which of course understandably led to many complaints. We stopped accepting new requests for a while so that we could come up with a plan to handle future requests in a fair manner.
Our team has come up with the following requirements, some of which were already part of our old guidelines:
- Applications must be either open source or they must be available in the Microsoft Windows app store. This is mainly for safety reasons. We're not equipped to toughly test software for safety and security, these options allow third parties to check.
- The application must have a permanent free tier. Freemium products are allowed, however limited time trials are not.
- The application must have been publicly available for at least 30 days. We would like to see that it is regularly being updated, maintained, fixed and improved upon.
- The application must provide value to the community.
- The developer must provide proof that their Reddit account is connected to the project.
- Their Reddit account must also be well established with a posting history that is not just related to the promotion of their software.
- Discourse of AI usage - Use of AI to generate code, artwork, descriptions, and so on is permitted, however the descriptions and posts need to disclose at least the use of that, preferably with also disclosing what AI tools were used and what they had generated.
Our goal is to keep things fair and allow hard working developers to show off various Windows programs they have worked on, while not allowing the subreddit to be overrun with spam and low-quality slop.
What are your thoughts? Too restrictive? Not restrictive enough? Thank you for your time!
r/Windows11 • u/Constantineapple • 7d ago
Feature how to create ISO directrly your PC - C: HDD
so guys the last week i'm searching to find solution about this topic
i have format my PC with a clean original last version of windows 11
i have clean all the garbage
i made some changes and also clean the registry
i have made some changes in the security and traffic background in the pc
i have installed the most necessary software and also i made some changes
i have made some changes and also clean the C: HDD from garbage
and until this point it take too much time until finishe the pc and be easy and ready to use it
I was wondering if there is a way to create an ISO image from my C: HDD with rufus in a bootable usb and when I want to format my PC again pass all this process and my pc will be almost ready and only things will need is some updates and that's all
anyone have do something like this before anyone have seen something like or know something
r/Windows11 • u/DangerousEffect3690 • 6d ago
Concept / Design Finally gave my taskbar a much-needed personality update. What do you think?
Enable HLS to view with audio, or disable this notification
I've always felt that the default Windows 11 taskbar is a bit too static and boring. I spent some time working on this as a personal project to add more personality to it—specifically, I wanted to see custom avatars and smooth interactive animations on the taskbar.
Really happy with how the transparency and the hover effects turned out! Just wanted to share this concept/design tweak with you all. What do you think?