Open TheJaredWilcurt opened 1 day ago
In this, very long issue:
Everyone is running into the same problem.
.bak
Instead of shipping just one executable:
Win11DisableOrRestoreRoundedCorners.exe
Ship 2 separate executables:
Win11DisableRoundedCorners.exe
Win11RestoreRoundedCorners.exe
This will avoid many issues in the future, including the current one.
It puts all the power into the hands of the users to pick what their intent is very clearly.
Should simplify code, as you have two simple tasks to do, instead of having to "guess" what the user wants.
I'm also cool with it always disabling rounded corners every time it is ran, unless you pass in a -restore argument, as seen in this PR:
-restore
Problem
In this, very long issue:
Everyone is running into the same problem.
.bak
file existsSolution
Instead of shipping just one executable:
Win11DisableOrRestoreRoundedCorners.exe
Ship 2 separate executables:
Win11DisableRoundedCorners.exe
Win11RestoreRoundedCorners.exe
This will avoid many issues in the future, including the current one.
It puts all the power into the hands of the users to pick what their intent is very clearly.
Should simplify code, as you have two simple tasks to do, instead of having to "guess" what the user wants.