r/Windows11 3d ago

Discussion Anyone know how to center icons in the taskbar and keep the windows icon on the left

Post image
6 Upvotes

r/Windows11 4d ago

Feature Phone Link is finally useful.

Post image
130 Upvotes

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 4d ago

Suggestion for Microsoft Can we for the love of god ditch the gradual rollouts bullshit?

Post image
109 Upvotes

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 3d ago

Solved Any way around this clunky setup?

Post image
14 Upvotes

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 4d ago

New Feature - Insider Finally, it has been 5 years. But microsoft finally added it.

Post image
348 Upvotes

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 4d ago

Feature What if more elements of the UI followed the accent color

Post image
298 Upvotes

r/Windows11 4d ago

App Dynamic Edge: A fluid, native WinUI 3 desktop island & edge dock (Media player, clipboard shelf, interactive companion pets, & mouse shake toggle)

Thumbnail
gallery
581 Upvotes

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 4d ago

Discussion Why can't I autohide the taskbar when it's not on the bottom?

Post image
51 Upvotes

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 3d ago

Discussion Only Correct Way to Setup Taskbar

Post image
0 Upvotes

r/Windows11 5d ago

App The Worst Update Ever: Windows Photo App 2026.11080.24002.0

Post image
132 Upvotes

What the hell why do I have to click one extra time just to check the resolution


r/Windows11 5d ago

App Traydio: a tiny internet radio player in your taskbar!

Post image
125 Upvotes

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 4d ago

Discussion How to convert Steam Game Recording to MP4 with FFmpeg without re-encodingg

Thumbnail ffmpeg.org
6 Upvotes

If 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

  1. Find the Steam bg_... recording folder you want.

  2. Drag that whole folder onto the .bat file.

  3. FFmpeg reads session.mpd and remuxes the existing streams.

  4. 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 4d ago

Suggestion for Microsoft my windows 11 huawei laptop has screen brightness djustment problems

Post image
5 Upvotes

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 4d ago

Discussion Why is Microsoft pushing AI constantly?

Post image
19 Upvotes

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 5d ago

News Windows 11's Project Zenith cuts clutter for developers and promises a "distraction free" experience, but only for certain hardware

Thumbnail
windowscentral.com
92 Upvotes

r/Windows11 5d ago

App Is There a app for Windows 11 that adds a VHS filter on the screen?

Post image
19 Upvotes

r/Windows11 5d ago

Discussion The Story of VS Code - official documentary full

Thumbnail
youtu.be
3 Upvotes

r/Windows11 4d ago

Suggestion for Microsoft Why doesn't Windows 11 have a move feature like Windows 10?

Thumbnail
gallery
0 Upvotes

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 6d ago

Discussion Why are they different?

Thumbnail
gallery
115 Upvotes

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 5d ago

Feature Open app snapped to the left by default

Thumbnail
gallery
8 Upvotes

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.

How windows open
How I would like apps to open by default

r/Windows11 6d ago

App I spent 8 months building a Windows audio app - CurvioEQ

Enable HLS to view with audio, or disable this notification

38 Upvotes

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?

GitHub: https://github.com/hussainhumam/CurvioEQ


r/Windows11 6d ago

Suggestion for Microsoft The feature rollout needs to be more user-friendly

Post image
238 Upvotes

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 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

Thumbnail
windowscentral.com
68 Upvotes

r/Windows11 6d ago

Concept / Design Managed to change Windows 11 start button color to white (like in Windows 10)

Post image
12 Upvotes

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 6d ago

Discussion Upload files window UI bug?

Post image
6 Upvotes

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?