├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── documentation-issue.yml │ ├── feature_request.yml │ └── translation_issue.yml ├── actions │ └── spell-check │ │ ├── advice.md │ │ ├── excludes.txt │ │ ├── expect.txt │ │ └── patterns.txt ├── pull_request_template.md └── workflows │ ├── codeql-analysis.yml │ └── spelling.yml ├── .gitignore ├── .gitmodules ├── .pipelines ├── build-bootstrapper.cmd ├── build-installer.cmd ├── build-localization.cmd ├── build-tools.cmd ├── build.cmd ├── ci │ ├── ci.yml │ └── templates │ │ ├── build-powertoys-ci.yml │ │ └── build-powertoys-steps.yml ├── packages.config ├── pipeline.user.windows.buddy.yml ├── pipeline.user.windows.yml ├── restore-dependencies.ps1 ├── restore-dependencies.yml ├── restore-installer.cmd ├── restore-localization.cmd ├── restore-telemetry.cmd ├── restore-tools.cmd ├── restore-windowsSdk17134.ps1 └── restore.cmd ├── .vsconfig ├── CODE_OF_CONDUCT.md ├── COMMUNITY.md ├── CONTRIBUTING.md ├── Cpp.Build.props ├── Directory.Build.props ├── LICENSE ├── NOTICE.md ├── PowerToys.sln ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── deps ├── cxxopts.props ├── expected.props ├── restore_git_submodules.props └── spdlog.props ├── doc ├── devdocs │ ├── akaLinks.md │ ├── common.md │ ├── guidance.md │ ├── localization.md │ ├── logging.md │ ├── modules │ │ ├── fancyzones.md │ │ ├── interface.md │ │ ├── keyboardmanager │ │ │ ├── README.md │ │ │ ├── japanese-ime.png │ │ │ ├── keyboardeventhandlers.md │ │ │ ├── keyboardmanager.md │ │ │ ├── keyboardmanagercommon.md │ │ │ └── keyboardmanagerui.md │ │ ├── launcher │ │ │ ├── architecture.md │ │ │ ├── debugging.md │ │ │ ├── new-plugin-checklist.md │ │ │ ├── plugins │ │ │ │ ├── calculator.md │ │ │ │ ├── community.unitconverter.md │ │ │ │ ├── folder.md │ │ │ │ ├── indexer.md │ │ │ │ ├── overview.md │ │ │ │ ├── program.md │ │ │ │ ├── registry.md │ │ │ │ ├── shell.md │ │ │ │ ├── sys.md │ │ │ │ ├── uri.md │ │ │ │ └── windowwalker.md │ │ │ ├── project_structure.md │ │ │ ├── readme.md │ │ │ └── telemetry.md │ │ ├── powerrename.md │ │ └── shortcut_guide.md │ ├── readme.md │ ├── run-as-admin-detection.md │ ├── runner.md │ ├── settings-reference.md │ ├── settings-web.md │ ├── settings.md │ ├── settingsv2 │ │ ├── communication-with-modules.md │ │ ├── compatibility-legacy-settings.md │ │ ├── hotkeycontrol.md │ │ ├── project-overview.md │ │ ├── readme.md │ │ ├── runner-ipc.md │ │ ├── settings-utilities.md │ │ ├── telemetry.md │ │ ├── ui-architecture.md │ │ ├── viewmodels.md │ │ └── xaml-island-tweaks.md │ ├── style.md │ └── tools.md ├── images │ ├── icons │ │ ├── Awake.png │ │ ├── Color Picker.png │ │ ├── FancyZones.png │ │ ├── FancyZones_MDL2.svg │ │ ├── File Explorer Preview.png │ │ ├── Image Resizer.png │ │ ├── Keyboard Manager.png │ │ ├── PowerRename.png │ │ ├── PowerToys Run.png │ │ ├── PowerToys icon │ │ │ ├── AI │ │ │ │ └── PowerToys_UWP_Assets.ai │ │ │ ├── ICO │ │ │ │ ├── PowerToys.ico │ │ │ │ └── PowerToys_14.ico │ │ │ ├── PNG │ │ │ │ ├── PowerToysAppList.targetsize-14-in-16.png │ │ │ │ ├── PowerToysAppList.targetsize-144.png │ │ │ │ ├── PowerToysAppList.targetsize-16.png │ │ │ │ ├── PowerToysAppList.targetsize-20.png │ │ │ │ ├── PowerToysAppList.targetsize-24.png │ │ │ │ ├── PowerToysAppList.targetsize-256.png │ │ │ │ ├── PowerToysAppList.targetsize-30.png │ │ │ │ ├── PowerToysAppList.targetsize-32.png │ │ │ │ ├── PowerToysAppList.targetsize-36.png │ │ │ │ ├── PowerToysAppList.targetsize-40.png │ │ │ │ ├── PowerToysAppList.targetsize-44.png │ │ │ │ ├── PowerToysAppList.targetsize-48.png │ │ │ │ ├── PowerToysAppList.targetsize-60.png │ │ │ │ ├── PowerToysAppList.targetsize-64.png │ │ │ │ ├── PowerToysAppList.targetsize-72.png │ │ │ │ ├── PowerToysAppList.targetsize-80.png │ │ │ │ └── PowerToysAppList.targetsize-96.png │ │ │ └── Vintage │ │ │ │ ├── Logo-HiRes.png │ │ │ │ ├── Logo.jpg │ │ │ │ └── Logo.svg │ │ ├── Shortcut Guide.png │ │ └── Video Conference Mute.png │ ├── launcher │ │ ├── launcher_dependency.PNG │ │ ├── plugins │ │ │ ├── calculator.png │ │ │ ├── community.unitconverter.png │ │ │ ├── folder.png │ │ │ ├── indexer.png │ │ │ ├── program.png │ │ │ ├── shell.png │ │ │ ├── sys.gif │ │ │ ├── uri.png │ │ │ └── windowwalker.png │ │ ├── pt_run_ui.png │ │ ├── ui_vm_interaction.PNG │ │ └── vm_plugin_interaction.PNG │ ├── overview │ │ ├── Awake_large.png │ │ ├── Awake_small.png │ │ ├── ColorPicker_large.png │ │ ├── ColorPicker_small.png │ │ ├── FancyZones_large.png │ │ ├── FancyZones_small.png │ │ ├── ImageResizer_large.png │ │ ├── ImageResizer_small.png │ │ ├── KBM_large.png │ │ ├── KBM_small.png │ │ ├── Original │ │ │ ├── Awake.png │ │ │ ├── ColorPicker.png │ │ │ ├── FancyZones.png │ │ │ ├── ImageResizer.png │ │ │ ├── KBM.png │ │ │ ├── PowerLauncher.png │ │ │ ├── PowerPreview.png │ │ │ ├── PowerRename.png │ │ │ ├── ShortcutGuide.png │ │ │ └── VideoConference.png │ │ ├── PT hero image.png │ │ ├── PT_large.png │ │ ├── PT_small.png │ │ ├── PowerLauncher_large.png │ │ ├── PowerLauncher_small.png │ │ ├── PowerPreview_large.png │ │ ├── PowerPreview_small.png │ │ ├── PowerRename_large.png │ │ ├── PowerRename_small.png │ │ ├── ShortcutGuide_large.png │ │ ├── ShortcutGuide_small.png │ │ ├── VideoConference_large.png │ │ └── VideoConference_small.png │ ├── runner │ │ └── tray.png │ ├── settings │ │ ├── bool_toggle.png │ │ ├── choice_group.png │ │ ├── color_picker.png │ │ ├── custom_action.png │ │ ├── dropdown_1.png │ │ ├── dropdown_2.png │ │ ├── example_settings.png │ │ ├── general_settings.png │ │ ├── hotkey.png │ │ ├── int_spinner.png │ │ ├── multiline.png │ │ ├── shortcut_guide_settings.png │ │ └── string.png │ └── settingsv2 │ │ ├── file-explorer.png │ │ ├── settingshotkeycontrol.png │ │ └── ui-architecture.png ├── planning │ ├── FancyZonesBacklog.md │ ├── PowerToysBacklog.md │ └── ShortcutGuideBacklog.md ├── specs │ ├── FancyZones-DCR.md │ └── readme.md └── unofficialInstallMethods.md ├── installer ├── License.rtf ├── MSIX │ ├── Images │ │ ├── logo.png │ │ ├── logo150.png │ │ └── logo44.png │ ├── PackagingLayout.xml │ ├── appxmanifest.xml │ ├── build_msix.ps1 │ ├── build_msix_cdpx.cmd │ ├── generate_self_sign_cert.ps1 │ ├── install_msix.ps1 │ ├── registry.dat │ ├── registry.reg │ ├── reinstall_msix.ps1 │ ├── sign_msix.ps1 │ ├── uninstall_msix.ps1 │ └── update_appxmanifest_version.ps1 ├── PowerToysBootstrapper │ ├── PowerToysBootstrapper.sln │ └── bootstrapper │ │ ├── DotnetInstallation.cpp │ │ ├── DotnetInstallation.h │ │ ├── LocProject.json │ │ ├── RcResource.cpp │ │ ├── RcResource.h │ │ ├── Resources.resx │ │ ├── bootstrapper.base.rc │ │ ├── bootstrapper.cpp │ │ ├── bootstrapper.vcxproj │ │ ├── loc │ │ ├── cs │ │ │ └── installer │ │ │ │ └── PowerToysBootstrapper │ │ │ │ └── bootstrapper │ │ │ │ └── Resources.resx.lcl │ │ ├── de │ │ │ └── installer │ │ │ │ └── PowerToysBootstrapper │ │ │ │ └── bootstrapper │ │ │ │ └── Resources.resx.lcl │ │ ├── es │ │ │ └── installer │ │ │ │ └── PowerToysBootstrapper │ │ │ │ └── bootstrapper │ │ │ │ └── Resources.resx.lcl │ │ ├── fr │ │ │ └── installer │ │ │ │ └── PowerToysBootstrapper │ │ │ │ └── bootstrapper │ │ │ │ └── Resources.resx.lcl │ │ ├── hu │ │ │ └── installer │ │ │ │ └── PowerToysBootstrapper │ │ │ │ └── bootstrapper │ │ │ │ └── Resources.resx.lcl │ │ ├── it │ │ │ └── installer │ │ │ │ └── PowerToysBootstrapper │ │ │ │ └── bootstrapper │ │ │ │ └── Resources.resx.lcl │ │ ├── ja │ │ │ └── installer │ │ │ │ └── PowerToysBootstrapper │ │ │ │ └── bootstrapper │ │ │ │ └── Resources.resx.lcl │ │ ├── ko │ │ │ └── installer │ │ │ │ └── PowerToysBootstrapper │ │ │ │ └── bootstrapper │ │ │ │ └── Resources.resx.lcl │ │ ├── nl │ │ │ └── installer │ │ │ │ └── PowerToysBootstrapper │ │ │ │ └── bootstrapper │ │ │ │ └── Resources.resx.lcl │ │ ├── pl │ │ │ └── installer │ │ │ │ └── PowerToysBootstrapper │ │ │ │ └── bootstrapper │ │ │ │ └── Resources.resx.lcl │ │ ├── pt-BR │ │ │ └── installer │ │ │ │ └── PowerToysBootstrapper │ │ │ │ └── bootstrapper │ │ │ │ └── Resources.resx.lcl │ │ ├── pt-PT │ │ │ └── installer │ │ │ │ └── PowerToysBootstrapper │ │ │ │ └── bootstrapper │ │ │ │ └── Resources.resx.lcl │ │ ├── ru │ │ │ └── installer │ │ │ │ └── PowerToysBootstrapper │ │ │ │ └── bootstrapper │ │ │ │ └── Resources.resx.lcl │ │ ├── sv │ │ │ └── installer │ │ │ │ └── PowerToysBootstrapper │ │ │ │ └── bootstrapper │ │ │ │ └── Resources.resx.lcl │ │ ├── tr │ │ │ └── installer │ │ │ │ └── PowerToysBootstrapper │ │ │ │ └── bootstrapper │ │ │ │ └── Resources.resx.lcl │ │ ├── zh-Hans │ │ │ └── installer │ │ │ │ └── PowerToysBootstrapper │ │ │ │ └── bootstrapper │ │ │ │ └── Resources.resx.lcl │ │ └── zh-Hant │ │ │ └── installer │ │ │ └── PowerToysBootstrapper │ │ │ └── bootstrapper │ │ │ └── Resources.resx.lcl │ │ ├── packages.config │ │ ├── pch.cpp │ │ ├── pch.h │ │ ├── progressbar_window.cpp │ │ ├── progressbar_window.h │ │ └── resource.base.h ├── PowerToysSetup.sln ├── PowerToysSetup │ ├── CustomDialogs │ │ ├── PTInstallDirDlg.wxs │ │ ├── PTLicenseDlg.wxs │ │ └── WixUI_PTInstallDir.wxs │ ├── Images │ │ ├── banner.png │ │ └── dialog.png │ ├── PowerToysSetup.wixproj │ ├── Product.wxs │ ├── packages.config │ └── publish.cmd ├── PowerToysSetupCustomActions │ ├── CustomAction.cpp │ ├── CustomAction.def │ ├── PowerToysSetupCustomActions.vcxproj │ ├── PowerToysSetupCustomActions.vcxproj.filters │ ├── packages.config │ ├── stdafx.cpp │ └── stdafx.h ├── README.md └── VCRuntime │ ├── concrt140.dll │ ├── msvcp140.dll │ ├── msvcp140_1.dll │ ├── msvcp140_2.dll │ ├── msvcp140_codecvt_ids.dll │ ├── vccorlib140.dll │ ├── vcruntime140.dll │ └── vcruntime140_1.dll ├── nuget.config ├── src ├── .clang-format ├── .editorconfig ├── ActionRunner │ ├── LocProject.json │ ├── Resources.resx │ ├── actionRunner.base.rc │ ├── actionRunner.cpp │ ├── actionRunner.vcxproj │ ├── loc │ │ ├── cs │ │ │ └── src │ │ │ │ └── action_runner │ │ │ │ └── Resources.resx.lcl │ │ ├── de │ │ │ └── src │ │ │ │ └── action_runner │ │ │ │ └── Resources.resx.lcl │ │ ├── es │ │ │ └── src │ │ │ │ └── action_runner │ │ │ │ └── Resources.resx.lcl │ │ ├── fr │ │ │ └── src │ │ │ │ └── action_runner │ │ │ │ └── Resources.resx.lcl │ │ ├── hu │ │ │ └── src │ │ │ │ └── action_runner │ │ │ │ └── Resources.resx.lcl │ │ ├── it │ │ │ └── src │ │ │ │ └── action_runner │ │ │ │ └── Resources.resx.lcl │ │ ├── ja │ │ │ └── src │ │ │ │ └── action_runner │ │ │ │ └── Resources.resx.lcl │ │ ├── ko │ │ │ └── src │ │ │ │ └── action_runner │ │ │ │ └── Resources.resx.lcl │ │ ├── nl │ │ │ └── src │ │ │ │ └── action_runner │ │ │ │ └── Resources.resx.lcl │ │ ├── pl │ │ │ └── src │ │ │ │ └── action_runner │ │ │ │ └── Resources.resx.lcl │ │ ├── pt-BR │ │ │ └── src │ │ │ │ └── action_runner │ │ │ │ └── Resources.resx.lcl │ │ ├── pt-PT │ │ │ └── src │ │ │ │ └── action_runner │ │ │ │ └── Resources.resx.lcl │ │ ├── ru │ │ │ └── src │ │ │ │ └── action_runner │ │ │ │ └── Resources.resx.lcl │ │ ├── sv │ │ │ └── src │ │ │ │ └── action_runner │ │ │ │ └── Resources.resx.lcl │ │ ├── tr │ │ │ └── src │ │ │ │ └── action_runner │ │ │ │ └── Resources.resx.lcl │ │ ├── zh-Hans │ │ │ └── src │ │ │ │ └── action_runner │ │ │ │ └── Resources.resx.lcl │ │ └── zh-Hant │ │ │ └── src │ │ │ └── action_runner │ │ │ └── Resources.resx.lcl │ ├── packages.config │ └── resource.base.h ├── README.md ├── Update │ ├── LocProject.json │ ├── PowerToys.Update.base.rc │ ├── PowerToys.Update.cpp │ ├── PowerToys.Update.vcxproj │ ├── Resources.resx │ ├── packages.config │ └── resource.base.h ├── Version.props ├── codeAnalysis │ ├── GlobalSuppressions.cs │ ├── Rules.ruleset │ ├── StyleCop.json │ └── format_sources.ps1 ├── common │ ├── COMUtils │ │ ├── COMUtils.cpp │ │ ├── COMUtils.h │ │ ├── COMUtils.vcxproj │ │ └── packages.config │ ├── Display │ │ ├── Display.vcxproj │ │ ├── dpi_aware.cpp │ │ ├── dpi_aware.h │ │ ├── monitors.cpp │ │ └── monitors.h │ ├── ManagedCommon │ │ ├── ManagedCommon.csproj │ │ ├── NativeMethods.cs │ │ ├── RunnerHelper.cs │ │ ├── StartupPosition.cs │ │ └── Theme.cs │ ├── ManagedTelemetry │ │ └── Telemetry │ │ │ ├── Events │ │ │ ├── DebugEvent.cs │ │ │ ├── EventBase.cs │ │ │ └── IEvent.cs │ │ │ ├── ManagedTelemetry.csproj │ │ │ └── PowerToysTelemetry.cs │ ├── Microsoft.PowerToys.Common.UI │ │ ├── CustomLibraryThemeProvider.cs │ │ ├── Microsoft.PowerToys.Common.UI.csproj │ │ └── ThemeManager.cs │ ├── SettingsAPI │ │ ├── FileWatcher.cpp │ │ ├── FileWatcher.h │ │ ├── SetttingsAPI.vcxproj │ │ ├── pch.cpp │ │ ├── pch.h │ │ ├── settings_helpers.cpp │ │ ├── settings_helpers.h │ │ ├── settings_objects.cpp │ │ └── settings_objects.h │ ├── Telemetry │ │ ├── PowerToys.wprp │ │ ├── ProjectTelemetry.h │ │ ├── TelemetryBase.cs │ │ ├── TraceLoggingDefines.h │ │ └── readme.md │ ├── Themes │ │ ├── Themes.vcxproj │ │ ├── icon_helpers.cpp │ │ ├── icon_helpers.h │ │ ├── packages.config │ │ ├── windows_colors.cpp │ │ └── windows_colors.h │ ├── UnitTests-CommonLib │ │ ├── Settings.Tests.cpp │ │ ├── UnitTests-CommonLib.rc │ │ ├── UnitTests-CommonLib.vcxproj │ │ ├── UnitTests-CommonLib.vcxproj.filters │ │ ├── UnitTestsVersionHelper.cpp │ │ ├── packages.config │ │ ├── pch.cpp │ │ ├── pch.h │ │ └── resource.h │ ├── debug_control.h │ ├── hooks │ │ ├── LowlevelKeyboardEvent.h │ │ └── WinHookEvent.h │ ├── interop │ │ ├── HotkeyManager.cpp │ │ ├── HotkeyManager.h │ │ ├── KeyboardHook.cpp │ │ ├── KeyboardHook.h │ │ ├── PowerToysInterop.vcxproj │ │ ├── PowerToysInterop.vcxproj.filters │ │ ├── Resource.h │ │ ├── async_message_queue.h │ │ ├── interop-tests │ │ │ ├── InteropTests.cs │ │ │ └── Microsoft.Interop.Tests.csproj │ │ ├── interop.cpp │ │ ├── interop.rc │ │ ├── keyboard_layout.cpp │ │ ├── keyboard_layout.h │ │ ├── keyboard_layout_impl.h │ │ ├── packages.config │ │ ├── pch.h │ │ ├── shared_constants.h │ │ ├── two_way_pipe_message_ipc.cpp │ │ ├── two_way_pipe_message_ipc.h │ │ └── two_way_pipe_message_ipc_impl.h │ ├── logger │ │ ├── framework.h │ │ ├── logger.cpp │ │ ├── logger.h │ │ ├── logger.vcxproj │ │ ├── logger.vcxproj.filters │ │ ├── logger_settings.cpp │ │ ├── logger_settings.h │ │ ├── packages.config │ │ ├── pch.cpp │ │ └── pch.h │ ├── monitor_utils.h │ ├── notifications │ │ ├── BackgroundActivator │ │ │ ├── BackgroundActivator.vcxproj │ │ │ ├── BackgroundActivator.vcxproj.filters │ │ │ ├── BackgroundHandler.cpp │ │ │ ├── BackgroundHandler.h │ │ │ ├── BackgroundHandler.idl │ │ │ ├── handler_functions.cpp │ │ │ ├── handler_functions.h │ │ │ ├── packages.config │ │ │ ├── pch.cpp │ │ │ └── pch.h │ │ ├── BackgroundActivatorDLL │ │ │ ├── BackgroundActivator.def │ │ │ ├── BackgroundActivator.rc │ │ │ ├── BackgroundActivator.vcxproj.filters │ │ │ ├── BackgroundActivatorDLL.vcxproj │ │ │ ├── cpp.hint │ │ │ ├── dllmain.cpp │ │ │ ├── framework.h │ │ │ ├── packages.config │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ └── resource.h │ │ ├── dont_show_again.cpp │ │ ├── dont_show_again.h │ │ ├── notifications.cpp │ │ ├── notifications.h │ │ ├── notifications.vcxproj │ │ ├── packages.config │ │ ├── pch.cpp │ │ └── pch.h │ ├── updating │ │ ├── installer.cpp │ │ ├── installer.h │ │ ├── packages.config │ │ ├── pch.cpp │ │ ├── pch.h │ │ ├── updateState.cpp │ │ ├── updateState.h │ │ ├── updating.cpp │ │ ├── updating.h │ │ ├── updating.vcxproj │ │ └── updating.vcxproj.filters │ ├── utils │ │ ├── EventLocker.h │ │ ├── EventWaiter.h │ │ ├── HttpClient.h │ │ ├── MsiUtils.h │ │ ├── ProcessWaiter.h │ │ ├── UnhandledExceptionHandler_x64.h │ │ ├── appMutex.h │ │ ├── com_object_factory.h │ │ ├── elevation.h │ │ ├── exec.h │ │ ├── json.h │ │ ├── logger_helper.h │ │ ├── os-detect.h │ │ ├── processApi.h │ │ ├── process_path.h │ │ ├── resources.h │ │ ├── string_utils.h │ │ ├── timeutil.h │ │ ├── winapi_error.h │ │ └── window.h │ └── version │ │ ├── helper.cpp │ │ ├── helper.h │ │ ├── version.cpp │ │ ├── version.h │ │ └── version.vcxproj ├── logging │ ├── logging.vcxproj │ └── logging.vcxproj.filters ├── modules │ ├── ShortcutGuide │ │ ├── ShortcutGuide │ │ │ ├── LocProject.json │ │ │ ├── PropertySheet.props │ │ │ ├── Resources.resx │ │ │ ├── Shortcut-Guide.ico │ │ │ ├── ShortcutGuide.base.rc │ │ │ ├── ShortcutGuide.exe.manifest │ │ │ ├── ShortcutGuide.vcxproj │ │ │ ├── ShortcutGuide.vcxproj.filters │ │ │ ├── ShortcutGuideConstants.h │ │ │ ├── ShortcutGuideSettings.h │ │ │ ├── animation.cpp │ │ │ ├── animation.h │ │ │ ├── d2d_svg.cpp │ │ │ ├── d2d_svg.h │ │ │ ├── d2d_text.cpp │ │ │ ├── d2d_text.h │ │ │ ├── d2d_window.cpp │ │ │ ├── d2d_window.h │ │ │ ├── main.cpp │ │ │ ├── native_event_waiter.cpp │ │ │ ├── native_event_waiter.h │ │ │ ├── overlay_window.cpp │ │ │ ├── overlay_window.h │ │ │ ├── packages.config │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ ├── resource.base.h │ │ │ ├── shortcut_guide.cpp │ │ │ ├── shortcut_guide.h │ │ │ ├── start_visible.cpp │ │ │ ├── start_visible.h │ │ │ ├── svgs │ │ │ │ ├── 0.svg │ │ │ │ ├── 1.svg │ │ │ │ ├── 2.svg │ │ │ │ ├── 3.svg │ │ │ │ ├── 4.svg │ │ │ │ ├── 5.svg │ │ │ │ ├── 6.svg │ │ │ │ ├── 7.svg │ │ │ │ ├── 8.svg │ │ │ │ ├── 9.svg │ │ │ │ ├── no_active_window.svg │ │ │ │ ├── overlay.svg │ │ │ │ └── overlay_portrait.svg │ │ │ ├── target_state.cpp │ │ │ ├── target_state.h │ │ │ ├── tasklist_positions.cpp │ │ │ ├── tasklist_positions.h │ │ │ ├── trace.cpp │ │ │ └── trace.h │ │ └── ShortcutGuideModuleInterface │ │ │ ├── LocProject.json │ │ │ ├── README.md │ │ │ ├── Resources.resx │ │ │ ├── ShortcutGuideModuleInterface.base.rc │ │ │ ├── ShortcutGuideModuleInterface.vcxproj │ │ │ ├── ShortcutGuideModuleInterface.vcxproj.filters │ │ │ ├── dllmain.cpp │ │ │ ├── loc │ │ │ ├── cs │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── shortcut_guide │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── de │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── shortcut_guide │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── es │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── shortcut_guide │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── fr │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── shortcut_guide │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── hu │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── shortcut_guide │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── it │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── shortcut_guide │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── ja │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── shortcut_guide │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── ko │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── shortcut_guide │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── nl │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── shortcut_guide │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── pl │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── shortcut_guide │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── pt-BR │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── shortcut_guide │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── pt-PT │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── shortcut_guide │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── ru │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── shortcut_guide │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── sv │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── shortcut_guide │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── tr │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── shortcut_guide │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── zh-Hans │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── shortcut_guide │ │ │ │ │ └── Resources.resx.lcl │ │ │ └── zh-Hant │ │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── shortcut_guide │ │ │ │ └── Resources.resx.lcl │ │ │ ├── packages.config │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ └── resource.base.h │ ├── awake │ │ ├── Awake │ │ │ ├── Awake.csproj │ │ │ ├── Core │ │ │ │ ├── APIHelper.cs │ │ │ │ └── TrayHelper.cs │ │ │ ├── Images │ │ │ │ └── Awake.ico │ │ │ ├── NLog.config │ │ │ └── Program.cs │ │ └── AwakeModuleInterface │ │ │ ├── AwakeConstants.h │ │ │ ├── AwakeModuleInterface.rc │ │ │ ├── AwakeModuleInterface.vcxproj │ │ │ ├── AwakeModuleInterface.vcxproj.filters │ │ │ ├── dllmain.cpp │ │ │ ├── packages.config │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ ├── resource.h │ │ │ ├── trace.cpp │ │ │ └── trace.h │ ├── colorPicker │ │ ├── ColorPicker │ │ │ ├── ColorPicker.base.rc │ │ │ ├── ColorPicker.vcxproj │ │ │ ├── ColorPicker.vcxproj.filters │ │ │ ├── ColorPickerConstants.h │ │ │ ├── LocProject.json │ │ │ ├── Resources.resx │ │ │ ├── dllmain.cpp │ │ │ ├── loc │ │ │ │ ├── cs │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── colorPicker │ │ │ │ │ │ └── ColorPicker │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── de │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── colorPicker │ │ │ │ │ │ └── ColorPicker │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── es │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── colorPicker │ │ │ │ │ │ └── ColorPicker │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── fr │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── colorPicker │ │ │ │ │ │ └── ColorPicker │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── hu │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── colorPicker │ │ │ │ │ │ └── ColorPicker │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── it │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── colorPicker │ │ │ │ │ │ └── ColorPicker │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ja │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── colorPicker │ │ │ │ │ │ └── ColorPicker │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ko │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── colorPicker │ │ │ │ │ │ └── ColorPicker │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── nl │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── colorPicker │ │ │ │ │ │ └── ColorPicker │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pl │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── colorPicker │ │ │ │ │ │ └── ColorPicker │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pt-BR │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── colorPicker │ │ │ │ │ │ └── ColorPicker │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pt-PT │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── colorPicker │ │ │ │ │ │ └── ColorPicker │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ru │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── colorPicker │ │ │ │ │ │ └── ColorPicker │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── sv │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── colorPicker │ │ │ │ │ │ └── ColorPicker │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── tr │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── colorPicker │ │ │ │ │ │ └── ColorPicker │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── zh-Hans │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── colorPicker │ │ │ │ │ │ └── ColorPicker │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ └── zh-Hant │ │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── colorPicker │ │ │ │ │ └── ColorPicker │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── packages.config │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ ├── resource.base.h │ │ │ ├── trace.cpp │ │ │ └── trace.h │ │ ├── ColorPickerUI │ │ │ ├── App.manifest │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Behaviors │ │ │ │ ├── AppearAnimationBehavior.cs │ │ │ │ ├── ChangeWindowPositionBehavior.cs │ │ │ │ ├── CloseZoomWindowBehavior.cs │ │ │ │ ├── DragAndDropReorderBehavior.cs │ │ │ │ ├── DragWindowBehavior.cs │ │ │ │ ├── GridEffectBehavior.cs │ │ │ │ └── ResizeBehavior.cs │ │ │ ├── Bootstrapper.cs │ │ │ ├── ColorEditorWindow.xaml │ │ │ ├── ColorEditorWindow.xaml.cs │ │ │ ├── ColorPickerUI.csproj │ │ │ ├── Common │ │ │ │ ├── RangeObservableCollection.cs │ │ │ │ ├── RelayCommand.cs │ │ │ │ └── ViewModelBase.cs │ │ │ ├── Controls │ │ │ │ ├── ColorFormatControl.xaml │ │ │ │ ├── ColorFormatControl.xaml.cs │ │ │ │ ├── ColorPickerControl.xaml │ │ │ │ ├── ColorPickerControl.xaml.cs │ │ │ │ └── HSVColor.cs │ │ │ ├── Converters │ │ │ │ ├── BoolToInvertedVisibilityConverter.cs │ │ │ │ ├── ColorToBrushConverter.cs │ │ │ │ ├── ColorToStringConverter.cs │ │ │ │ ├── NumberToInvertedVisibilityConverter.cs │ │ │ │ └── NumberToVisibilityConverter.cs │ │ │ ├── Helpers │ │ │ │ ├── AppStateHandler.cs │ │ │ │ ├── ClipboardHelper.cs │ │ │ │ ├── ColorHelper.cs │ │ │ │ ├── ColorNameHelper.cs │ │ │ │ ├── ColorRepresentationHelper.cs │ │ │ │ ├── IThrottledActionInvoker.cs │ │ │ │ ├── Logger.cs │ │ │ │ ├── MonitorResolutionHelper.cs │ │ │ │ ├── NativeEventWaiter.cs │ │ │ │ ├── SessionEventHelper.cs │ │ │ │ ├── ThrottledActionInvoker.cs │ │ │ │ └── ZoomWindowHelper.cs │ │ │ ├── Keyboard │ │ │ │ ├── GlobalKeyboardHook.cs │ │ │ │ ├── GlobalKeyboardHookEventArgs.cs │ │ │ │ └── KeyboardMonitor.cs │ │ │ ├── LocProject.json │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── Models │ │ │ │ └── ColorFormatModel.cs │ │ │ ├── Mouse │ │ │ │ ├── CursorManager.cs │ │ │ │ ├── IMouseInfoProvider.cs │ │ │ │ ├── MouseHook.cs │ │ │ │ └── MouseInfoProvider.cs │ │ │ ├── NativeMethods.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── Resources │ │ │ │ ├── Styles.xaml │ │ │ │ ├── ViewModelViewMappings.xaml │ │ │ │ ├── colorPicker.cur │ │ │ │ └── icon.ico │ │ │ ├── Settings │ │ │ │ ├── IUserSettings.cs │ │ │ │ ├── SettingItem`1.cs │ │ │ │ └── UserSettings.cs │ │ │ ├── Shaders │ │ │ │ ├── Global.cs │ │ │ │ ├── GridShader.cso │ │ │ │ ├── GridShader.fx │ │ │ │ └── GridShaderEffect.cs │ │ │ ├── Telemetry │ │ │ │ ├── ColorPickerSession.cs │ │ │ │ └── ColorPickerSettings.cs │ │ │ ├── Themes │ │ │ │ ├── Dark.xaml │ │ │ │ ├── HighContrast1.xaml │ │ │ │ ├── HighContrast2.xaml │ │ │ │ ├── HighContrastBlack.xaml │ │ │ │ ├── HighContrastWhite.xaml │ │ │ │ └── Light.xaml │ │ │ ├── ViewModelContracts │ │ │ │ ├── IColorEditorViewModel.cs │ │ │ │ ├── IMainViewModel.cs │ │ │ │ └── IZoomViewModel.cs │ │ │ ├── ViewModels │ │ │ │ ├── ColorEditorViewModel.cs │ │ │ │ ├── MainViewModel.cs │ │ │ │ └── ZoomViewModel.cs │ │ │ ├── Views │ │ │ │ ├── ColorEditorView.xaml │ │ │ │ ├── ColorEditorView.xaml.cs │ │ │ │ ├── MainView.xaml │ │ │ │ ├── MainView.xaml.cs │ │ │ │ ├── ZoomView.xaml │ │ │ │ └── ZoomView.xaml.cs │ │ │ ├── ZoomWindow.xaml │ │ │ ├── ZoomWindow.xaml.cs │ │ │ └── loc │ │ │ │ ├── cs │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── colorPicker │ │ │ │ │ └── ColorPickerUI │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── de │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── colorPicker │ │ │ │ │ └── ColorPickerUI │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── es │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── colorPicker │ │ │ │ │ └── ColorPickerUI │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── fr │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── colorPicker │ │ │ │ │ └── ColorPickerUI │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── hu │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── colorPicker │ │ │ │ │ └── ColorPickerUI │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── it │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── colorPicker │ │ │ │ │ └── ColorPickerUI │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ja │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── colorPicker │ │ │ │ │ └── ColorPickerUI │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ko │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── colorPicker │ │ │ │ │ └── ColorPickerUI │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── nl │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── colorPicker │ │ │ │ │ └── ColorPickerUI │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pl │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── colorPicker │ │ │ │ │ └── ColorPickerUI │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pt-BR │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── colorPicker │ │ │ │ │ └── ColorPickerUI │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pt-PT │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── colorPicker │ │ │ │ │ └── ColorPickerUI │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ru │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── colorPicker │ │ │ │ │ └── ColorPickerUI │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── sv │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── colorPicker │ │ │ │ │ └── ColorPickerUI │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── tr │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── colorPicker │ │ │ │ │ └── ColorPickerUI │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── zh-Hans │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── colorPicker │ │ │ │ │ └── ColorPickerUI │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ └── zh-Hant │ │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── colorPicker │ │ │ │ └── ColorPickerUI │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ └── UnitTest-ColorPickerUI │ │ │ ├── Helpers │ │ │ ├── ColorConverterTest.cs │ │ │ └── ColorRepresentationHelperTest.cs │ │ │ └── UnitTest-ColorPickerUI.csproj │ ├── fancyzones │ │ ├── FancyZones │ │ │ ├── FancyZones.vcxproj │ │ │ ├── FancyZones.vcxproj.filters │ │ │ ├── FancyZonesApp.cpp │ │ │ ├── FancyZonesApp.h │ │ │ ├── main.cpp │ │ │ ├── packages.config │ │ │ ├── pch.cpp │ │ │ └── pch.h │ │ ├── FancyZonesLib │ │ │ ├── CallTracer.cpp │ │ │ ├── CallTracer.h │ │ │ ├── FancyZones.cpp │ │ │ ├── FancyZones.h │ │ │ ├── FancyZonesData.cpp │ │ │ ├── FancyZonesData.h │ │ │ ├── FancyZonesDataTypes.cpp │ │ │ ├── FancyZonesDataTypes.h │ │ │ ├── FancyZonesLib.vcxproj │ │ │ ├── FancyZonesLib.vcxproj.filters │ │ │ ├── FancyZonesWinHookEventIDs.cpp │ │ │ ├── FancyZonesWinHookEventIDs.h │ │ │ ├── GenericKeyHook.h │ │ │ ├── JsonHelpers.cpp │ │ │ ├── JsonHelpers.h │ │ │ ├── KeyState.h │ │ │ ├── LocProject.json │ │ │ ├── MonitorUtils.cpp │ │ │ ├── MonitorUtils.h │ │ │ ├── MonitorWorkAreaHandler.cpp │ │ │ ├── MonitorWorkAreaHandler.h │ │ │ ├── OnThreadExecutor.cpp │ │ │ ├── Resources.resx │ │ │ ├── SecondaryMouseButtonsHook.cpp │ │ │ ├── SecondaryMouseButtonsHook.h │ │ │ ├── Settings.cpp │ │ │ ├── Settings.h │ │ │ ├── VirtualDesktop.cpp │ │ │ ├── VirtualDesktop.h │ │ │ ├── WindowMoveHandler.cpp │ │ │ ├── WindowMoveHandler.h │ │ │ ├── WorkArea.cpp │ │ │ ├── WorkArea.h │ │ │ ├── Zone.cpp │ │ │ ├── Zone.h │ │ │ ├── ZoneColors.h │ │ │ ├── ZoneSet.cpp │ │ │ ├── ZoneSet.h │ │ │ ├── ZoneWindowDrawing.cpp │ │ │ ├── ZoneWindowDrawing.h │ │ │ ├── fancyzones.base.rc │ │ │ ├── icon.ico │ │ │ ├── loc │ │ │ │ ├── cs │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── fancyzones │ │ │ │ │ │ └── lib │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── de │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── fancyzones │ │ │ │ │ │ └── lib │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── es │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── fancyzones │ │ │ │ │ │ └── lib │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── fr │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── fancyzones │ │ │ │ │ │ └── lib │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── hu │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── fancyzones │ │ │ │ │ │ └── lib │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── it │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── fancyzones │ │ │ │ │ │ └── lib │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ja │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── fancyzones │ │ │ │ │ │ └── lib │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ko │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── fancyzones │ │ │ │ │ │ └── lib │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── nl │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── fancyzones │ │ │ │ │ │ └── lib │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pl │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── fancyzones │ │ │ │ │ │ └── lib │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pt-BR │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── fancyzones │ │ │ │ │ │ └── lib │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pt-PT │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── fancyzones │ │ │ │ │ │ └── lib │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ru │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── fancyzones │ │ │ │ │ │ └── lib │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── sv │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── fancyzones │ │ │ │ │ │ └── lib │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── tr │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── fancyzones │ │ │ │ │ │ └── lib │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── zh-Hans │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── fancyzones │ │ │ │ │ │ └── lib │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ └── zh-Hant │ │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── fancyzones │ │ │ │ │ └── lib │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── on_thread_executor.h │ │ │ ├── packages.config │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ ├── resource.base.h │ │ │ ├── trace.cpp │ │ │ ├── trace.h │ │ │ ├── util.cpp │ │ │ └── util.h │ │ ├── FancyZonesModuleInterface │ │ │ ├── FancyZonesModuleInterface.vcxproj │ │ │ ├── FancyZonesModuleInterface.vcxproj.filters │ │ │ ├── dllmain.cpp │ │ │ ├── packages.config │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ └── targetver.h │ │ ├── FancyZonesTests │ │ │ └── UnitTests │ │ │ │ ├── FancyZones.Spec.cpp │ │ │ │ ├── FancyZonesSettings.Spec.cpp │ │ │ │ ├── JsonHelpers.Tests.cpp │ │ │ │ ├── UnitTests-FancyZones.rc │ │ │ │ ├── UnitTests.vcxproj │ │ │ │ ├── UnitTests.vcxproj.filters │ │ │ │ ├── Util.Spec.cpp │ │ │ │ ├── Util.cpp │ │ │ │ ├── Util.h │ │ │ │ ├── WorkArea.Spec.cpp │ │ │ │ ├── Zone.Spec.cpp │ │ │ │ ├── ZoneSet.Spec.cpp │ │ │ │ ├── packages.config │ │ │ │ ├── pch.cpp │ │ │ │ ├── pch.h │ │ │ │ └── resource.h │ │ ├── README.md │ │ └── editor │ │ │ ├── FancyZonesEditor.sln │ │ │ └── FancyZonesEditor │ │ │ ├── App.config │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── CanvasEditor.xaml │ │ │ ├── CanvasEditor.xaml.cs │ │ │ ├── CanvasEditorWindow.xaml │ │ │ ├── CanvasEditorWindow.xaml.cs │ │ │ ├── CanvasZone.xaml │ │ │ ├── CanvasZone.xaml.cs │ │ │ ├── Converters │ │ │ ├── BooleanToIntConverter.xaml.cs │ │ │ ├── LayoutModelTypeBlankToVisibilityConverter.cs │ │ │ ├── LayoutModelTypeToVisibilityConverter.cs │ │ │ ├── LayoutTypeCustomToVisibilityConverter.cs │ │ │ ├── LayoutTypeTemplateToVisibilityConverter.cs │ │ │ └── ModelToVisibilityConverter.xaml.cs │ │ │ ├── DashCaseNamingPolicy.cs │ │ │ ├── EditorWindow.cs │ │ │ ├── FancyZonesEditor.csproj │ │ │ ├── GridData.cs │ │ │ ├── GridEditor.xaml │ │ │ ├── GridEditor.xaml.cs │ │ │ ├── GridEditorWindow.xaml │ │ │ ├── GridEditorWindow.xaml.cs │ │ │ ├── GridResizer.xaml │ │ │ ├── GridResizer.xaml.cs │ │ │ ├── GridZone.xaml │ │ │ ├── GridZone.xaml.cs │ │ │ ├── LayoutOverlayWindow.xaml │ │ │ ├── LayoutOverlayWindow.xaml.cs │ │ │ ├── LayoutPreview.xaml │ │ │ ├── LayoutPreview.xaml.cs │ │ │ ├── LocProject.json │ │ │ ├── MagneticSnap.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── Models │ │ │ ├── CanvasLayoutModel.cs │ │ │ ├── Device.cs │ │ │ ├── GridLayoutModel.cs │ │ │ ├── LayoutModel.cs │ │ │ ├── LayoutSettings.cs │ │ │ ├── LayoutType.cs │ │ │ ├── MainWindowSettingsModel.cs │ │ │ ├── Monitor.cs │ │ │ ├── MonitorInfoModel.cs │ │ │ └── QuickKeysModel.cs │ │ │ ├── NativeMethods.cs │ │ │ ├── Overlay.cs │ │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── SplitEventArgs.cs │ │ │ ├── StringUtils.cs │ │ │ ├── Styles │ │ │ ├── ButtonStyles.xaml │ │ │ ├── GridViewStyles.xaml │ │ │ └── LayoutPreviewStyles.xaml │ │ │ ├── Themes │ │ │ ├── Dark.xaml │ │ │ ├── HighContrast1.xaml │ │ │ ├── HighContrast2.xaml │ │ │ ├── HighContrastBlack.xaml │ │ │ ├── HighContrastWhite.xaml │ │ │ └── Light.xaml │ │ │ ├── Utils │ │ │ ├── EventArgs`1.cs │ │ │ ├── EventRaiser.cs │ │ │ ├── FancyZonesEditorIO.cs │ │ │ ├── MonitorChangedEventArgs.cs │ │ │ ├── NativeMethods.cs │ │ │ ├── RelayCommand.cs │ │ │ └── RelayCommand`1.cs │ │ │ ├── ViewModels │ │ │ └── MonitorViewModel.cs │ │ │ ├── WindowLayout.xaml │ │ │ ├── WindowLayout.xaml.cs │ │ │ ├── app.manifest │ │ │ ├── images │ │ │ └── FancyZonesEditor.ico │ │ │ └── loc │ │ │ ├── cs │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── fancyzones │ │ │ │ └── editor │ │ │ │ └── FancyZonesEditor │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ ├── de │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── fancyzones │ │ │ │ └── editor │ │ │ │ └── FancyZonesEditor │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ ├── es │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── fancyzones │ │ │ │ └── editor │ │ │ │ └── FancyZonesEditor │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ ├── fr │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── fancyzones │ │ │ │ └── editor │ │ │ │ └── FancyZonesEditor │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ ├── hu │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── fancyzones │ │ │ │ └── editor │ │ │ │ └── FancyZonesEditor │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ ├── it │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── fancyzones │ │ │ │ └── editor │ │ │ │ └── FancyZonesEditor │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ ├── ja │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── fancyzones │ │ │ │ └── editor │ │ │ │ └── FancyZonesEditor │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ ├── ko │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── fancyzones │ │ │ │ └── editor │ │ │ │ └── FancyZonesEditor │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ ├── nl │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── fancyzones │ │ │ │ └── editor │ │ │ │ └── FancyZonesEditor │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ ├── pl │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── fancyzones │ │ │ │ └── editor │ │ │ │ └── FancyZonesEditor │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ ├── pt-BR │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── fancyzones │ │ │ │ └── editor │ │ │ │ └── FancyZonesEditor │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ ├── pt-PT │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── fancyzones │ │ │ │ └── editor │ │ │ │ └── FancyZonesEditor │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ ├── ru │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── fancyzones │ │ │ │ └── editor │ │ │ │ └── FancyZonesEditor │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ ├── sv │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── fancyzones │ │ │ │ └── editor │ │ │ │ └── FancyZonesEditor │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ ├── tr │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── fancyzones │ │ │ │ └── editor │ │ │ │ └── FancyZonesEditor │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ ├── zh-Hans │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── fancyzones │ │ │ │ └── editor │ │ │ │ └── FancyZonesEditor │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ └── zh-Hant │ │ │ └── src │ │ │ └── modules │ │ │ └── fancyzones │ │ │ └── editor │ │ │ └── FancyZonesEditor │ │ │ └── Properties │ │ │ └── Resources.resx.lcl │ ├── imageresizer │ │ ├── README.md │ │ ├── codeAnalysis │ │ │ └── GlobalSuppressions.cs │ │ ├── dll │ │ │ ├── ContextMenuHandler.cpp │ │ │ ├── ContextMenuHandler.h │ │ │ ├── ContextMenuHandler.rgs │ │ │ ├── HDropIterator.cpp │ │ │ ├── HDropIterator.h │ │ │ ├── ImageResizerConstants.h │ │ │ ├── ImageResizerExt.base.rc │ │ │ ├── ImageResizerExt.cpp │ │ │ ├── ImageResizerExt.def │ │ │ ├── ImageResizerExt.idl │ │ │ ├── ImageResizerExt.rgs │ │ │ ├── ImageResizerExt.vcxproj │ │ │ ├── ImageResizerExt.vcxproj.filters │ │ │ ├── LocProject.json │ │ │ ├── Resources.resx │ │ │ ├── Settings.cpp │ │ │ ├── Settings.h │ │ │ ├── dllmain.cpp │ │ │ ├── dllmain.h │ │ │ ├── loc │ │ │ │ ├── cs │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── imageresizer │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── de │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── imageresizer │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── es │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── imageresizer │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── fr │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── imageresizer │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── hu │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── imageresizer │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── it │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── imageresizer │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ja │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── imageresizer │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ko │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── imageresizer │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── nl │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── imageresizer │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pl │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── imageresizer │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pt-BR │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── imageresizer │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pt-PT │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── imageresizer │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ru │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── imageresizer │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── sv │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── imageresizer │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── tr │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── imageresizer │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── zh-Hans │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── imageresizer │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ └── zh-Hant │ │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── imageresizer │ │ │ │ │ └── dll │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── packages.config │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ ├── resource.base.h │ │ │ ├── targetver.h │ │ │ ├── trace.cpp │ │ │ └── trace.h │ │ ├── tests │ │ │ ├── ImageResizerUITest.csproj │ │ │ ├── Models │ │ │ │ ├── CustomSizeTests.cs │ │ │ │ ├── ResizeBatchTests.cs │ │ │ │ ├── ResizeOperationTests.cs │ │ │ │ └── ResizeSizeTests.cs │ │ │ ├── Properties │ │ │ │ ├── AppFixture.cs │ │ │ │ └── SettingsTests.cs │ │ │ ├── Test.gif │ │ │ ├── Test.ico │ │ │ ├── Test.jpg │ │ │ ├── Test.png │ │ │ ├── Test │ │ │ │ ├── AssertEx.cs │ │ │ │ ├── BitmapSourceExtensions.cs │ │ │ │ └── TestDirectory.cs │ │ │ ├── TestMetadataIssue2447.jpg │ │ │ ├── TestPortrait.png │ │ │ └── Views │ │ │ │ └── TimeRemainingConverterTests.cs │ │ └── ui │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Extensions │ │ │ ├── BitmapEncoderExtensions.cs │ │ │ ├── ICollectionExtensions.cs │ │ │ └── TimeSpanExtensions.cs │ │ │ ├── Helpers │ │ │ ├── Observable.cs │ │ │ └── RelayCommand.cs │ │ │ ├── ImageResizerUI.csproj │ │ │ ├── LocProject.json │ │ │ ├── Models │ │ │ ├── CustomSize.cs │ │ │ ├── ResizeBatch.cs │ │ │ ├── ResizeError.cs │ │ │ ├── ResizeFit.cs │ │ │ ├── ResizeOperation.cs │ │ │ ├── ResizeSize.cs │ │ │ └── ResizeUnit.cs │ │ │ ├── Properties │ │ │ ├── InternalsVisibleTo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Settings.cs │ │ │ ├── Resources │ │ │ ├── ImageResizer.ico │ │ │ └── ImageResizer.png │ │ │ ├── Themes │ │ │ ├── Dark.xaml │ │ │ ├── HighContrast1.xaml │ │ │ ├── HighContrast2.xaml │ │ │ ├── HighContrastBlack.xaml │ │ │ ├── HighContrastWhite.xaml │ │ │ └── Light.xaml │ │ │ ├── Utilities │ │ │ ├── MathHelpers.cs │ │ │ └── NativeMethods.cs │ │ │ ├── ViewModels │ │ │ ├── AdvancedViewModel.cs │ │ │ ├── ITabViewModel.cs │ │ │ ├── InputViewModel.cs │ │ │ ├── MainViewModel.cs │ │ │ ├── ProgressViewModel.cs │ │ │ └── ResultsViewModel.cs │ │ │ ├── Views │ │ │ ├── AutoDoubleConverter.cs │ │ │ ├── BoolValueConverter.cs │ │ │ ├── EnumValueConverter.cs │ │ │ ├── IMainView.cs │ │ │ ├── InputPage.xaml │ │ │ ├── InputPage.xaml.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── ProgressPage.xaml │ │ │ ├── ProgressPage.xaml.cs │ │ │ ├── ResizeUnitConverter.cs │ │ │ ├── ResultsPage.xaml │ │ │ ├── ResultsPage.xaml.cs │ │ │ ├── TiffCompressOptionConverter.cs │ │ │ ├── TimeRemainingConverter.cs │ │ │ └── VisibilityBoolConverter.cs │ │ │ └── loc │ │ │ ├── cs │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── imageresizer │ │ │ │ └── ui │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ ├── de │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── imageresizer │ │ │ │ └── ui │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ ├── es │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── imageresizer │ │ │ │ └── ui │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ ├── fr │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── imageresizer │ │ │ │ └── ui │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ ├── hu │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── imageresizer │ │ │ │ └── ui │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ ├── it │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── imageresizer │ │ │ │ └── ui │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ ├── ja │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── imageresizer │ │ │ │ └── ui │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ ├── ko │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── imageresizer │ │ │ │ └── ui │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ ├── nl │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── imageresizer │ │ │ │ └── ui │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ ├── pl │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── imageresizer │ │ │ │ └── ui │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ ├── pt-BR │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── imageresizer │ │ │ │ └── ui │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ ├── pt-PT │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── imageresizer │ │ │ │ └── ui │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ ├── ru │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── imageresizer │ │ │ │ └── ui │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ ├── sv │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── imageresizer │ │ │ │ └── ui │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ ├── tr │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── imageresizer │ │ │ │ └── ui │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ ├── zh-Hans │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── imageresizer │ │ │ │ └── ui │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ │ └── zh-Hant │ │ │ └── src │ │ │ └── modules │ │ │ └── imageresizer │ │ │ └── ui │ │ │ └── Properties │ │ │ └── Resources.resx.lcl │ ├── interface │ │ └── powertoy_module_interface.h │ ├── keyboardmanager │ │ ├── Directory.Build.targets │ │ ├── KeyboardManagerEditor │ │ │ ├── Keyboard.ico │ │ │ ├── KeyboardManagerEditor.base.rc │ │ │ ├── KeyboardManagerEditor.cpp │ │ │ ├── KeyboardManagerEditor.exe.manifest │ │ │ ├── KeyboardManagerEditor.h │ │ │ ├── KeyboardManagerEditor.vcxproj │ │ │ ├── KeyboardManagerEditor.vcxproj.filters │ │ │ ├── LocProject.json │ │ │ ├── Resource.h │ │ │ ├── Resources.resx │ │ │ ├── packages.config │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ ├── resource.base.h │ │ │ └── targetver.h │ │ ├── KeyboardManagerEditorLibrary │ │ │ ├── BufferValidationHelpers.cpp │ │ │ ├── BufferValidationHelpers.h │ │ │ ├── Dialog.cpp │ │ │ ├── Dialog.h │ │ │ ├── EditKeyboardWindow.cpp │ │ │ ├── EditKeyboardWindow.h │ │ │ ├── EditShortcutsWindow.cpp │ │ │ ├── EditShortcutsWindow.h │ │ │ ├── EditorConstants.h │ │ │ ├── EditorHelpers.cpp │ │ │ ├── EditorHelpers.h │ │ │ ├── KeyDelay.cpp │ │ │ ├── KeyDelay.h │ │ │ ├── KeyDropDownControl.cpp │ │ │ ├── KeyDropDownControl.h │ │ │ ├── KeyboardManagerEditorLibrary.vcxproj │ │ │ ├── KeyboardManagerEditorLibrary.vcxproj.filters │ │ │ ├── KeyboardManagerEditorStrings.cpp │ │ │ ├── KeyboardManagerEditorStrings.h │ │ │ ├── KeyboardManagerState.cpp │ │ │ ├── KeyboardManagerState.h │ │ │ ├── LoadingAndSavingRemappingHelper.cpp │ │ │ ├── LoadingAndSavingRemappingHelper.h │ │ │ ├── ShortcutControl.cpp │ │ │ ├── ShortcutControl.h │ │ │ ├── ShortcutErrorType.h │ │ │ ├── SingleKeyRemapControl.cpp │ │ │ ├── SingleKeyRemapControl.h │ │ │ ├── Styles.cpp │ │ │ ├── Styles.h │ │ │ ├── UIHelpers.cpp │ │ │ ├── UIHelpers.h │ │ │ ├── XamlBridge.cpp │ │ │ ├── XamlBridge.h │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ ├── targetver.h │ │ │ ├── trace.cpp │ │ │ └── trace.h │ │ ├── KeyboardManagerEditorTest │ │ │ ├── BufferValidationTests.cpp │ │ │ ├── EditorHelpersTests.cpp │ │ │ ├── KeyboardManagerEditorTest.rc │ │ │ ├── KeyboardManagerEditorTest.vcxproj │ │ │ ├── KeyboardManagerEditorTest.vcxproj.filters │ │ │ ├── LoadingAndSavingRemappingTests.cpp │ │ │ ├── packages.config │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ └── resource.h │ │ ├── KeyboardManagerEngine │ │ │ ├── Keyboard.ico │ │ │ ├── KeyboardManagerEngine.rc │ │ │ ├── KeyboardManagerEngine.vcxproj │ │ │ ├── KeyboardManagerEngine.vcxproj.filters │ │ │ ├── PropertySheet.props │ │ │ ├── main.cpp │ │ │ ├── packages.config │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ └── resource.h │ │ ├── KeyboardManagerEngineLibrary │ │ │ ├── KeyboardEventHandlers.cpp │ │ │ ├── KeyboardEventHandlers.h │ │ │ ├── KeyboardManager.cpp │ │ │ ├── KeyboardManager.h │ │ │ ├── KeyboardManagerEngineLibrary.vcxproj │ │ │ ├── KeyboardManagerEngineLibrary.vcxproj.filters │ │ │ ├── State.cpp │ │ │ ├── State.h │ │ │ ├── packages.config │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ ├── trace.cpp │ │ │ └── trace.h │ │ ├── KeyboardManagerEngineTest │ │ │ ├── AppSpecificShortcutRemappingTests.cpp │ │ │ ├── KeyboardManagerEngineTest.vcxproj │ │ │ ├── KeyboardManagerEngineTest.vcxproj.filters │ │ │ ├── MockedInput.cpp │ │ │ ├── MockedInput.h │ │ │ ├── MockedInputSanityTests.cpp │ │ │ ├── OSLevelShortcutRemappingTests.cpp │ │ │ ├── SetKeyEventTests.cpp │ │ │ ├── SingleKeyRemappingTests.cpp │ │ │ ├── TestHelpers.cpp │ │ │ ├── TestHelpers.h │ │ │ ├── packages.config │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ └── resource.h │ │ ├── README.md │ │ ├── common │ │ │ ├── Helpers.cpp │ │ │ ├── Helpers.h │ │ │ ├── Input.h │ │ │ ├── InputInterface.h │ │ │ ├── KeyboardEventHandlers.cpp │ │ │ ├── KeyboardEventHandlers.h │ │ │ ├── KeyboardManagerCommon.vcxproj │ │ │ ├── KeyboardManagerCommon.vcxproj.filters │ │ │ ├── KeyboardManagerConstants.h │ │ │ ├── MappingConfiguration.cpp │ │ │ ├── MappingConfiguration.h │ │ │ ├── ModifierKey.h │ │ │ ├── RemapShortcut.h │ │ │ ├── Shortcut.cpp │ │ │ ├── Shortcut.h │ │ │ ├── packages.config │ │ │ ├── pch.cpp │ │ │ └── pch.h │ │ └── dll │ │ │ ├── KeyboardManager.base.rc │ │ │ ├── KeyboardManager.vcxproj │ │ │ ├── KeyboardManager.vcxproj.filters │ │ │ ├── LocProject.json │ │ │ ├── Resources.resx │ │ │ ├── dllmain.cpp │ │ │ ├── loc │ │ │ ├── cs │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── keyboardmanager │ │ │ │ │ └── dll │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── de │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── keyboardmanager │ │ │ │ │ └── dll │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── es │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── keyboardmanager │ │ │ │ │ └── dll │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── fr │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── keyboardmanager │ │ │ │ │ └── dll │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── hu │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── keyboardmanager │ │ │ │ │ └── dll │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── it │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── keyboardmanager │ │ │ │ │ └── dll │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── ja │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── keyboardmanager │ │ │ │ │ └── dll │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── ko │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── keyboardmanager │ │ │ │ │ └── dll │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── nl │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── keyboardmanager │ │ │ │ │ └── dll │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── pl │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── keyboardmanager │ │ │ │ │ └── dll │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── pt-BR │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── keyboardmanager │ │ │ │ │ └── dll │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── pt-PT │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── keyboardmanager │ │ │ │ │ └── dll │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── ru │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── keyboardmanager │ │ │ │ │ └── dll │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── sv │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── keyboardmanager │ │ │ │ │ └── dll │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── tr │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── keyboardmanager │ │ │ │ │ └── dll │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── zh-Hans │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── keyboardmanager │ │ │ │ │ └── dll │ │ │ │ │ └── Resources.resx.lcl │ │ │ └── zh-Hant │ │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── keyboardmanager │ │ │ │ └── dll │ │ │ │ └── Resources.resx.lcl │ │ │ ├── packages.config │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ ├── resource.base.h │ │ │ ├── trace.cpp │ │ │ └── trace.h │ ├── launcher │ │ ├── LICENSE │ │ ├── Microsoft.Launcher │ │ │ ├── LauncherConstants.h │ │ │ ├── LocProject.json │ │ │ ├── Microsoft.Launcher.base.rc │ │ │ ├── Microsoft.Launcher.vcxproj │ │ │ ├── Microsoft.Launcher.vcxproj.filters │ │ │ ├── Resources.resx │ │ │ ├── dllmain.cpp │ │ │ ├── loc │ │ │ │ ├── cs │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── launcher │ │ │ │ │ │ └── Microsoft.Launcher │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── de │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── launcher │ │ │ │ │ │ └── Microsoft.Launcher │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── es │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── launcher │ │ │ │ │ │ └── Microsoft.Launcher │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── fr │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── launcher │ │ │ │ │ │ └── Microsoft.Launcher │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── hu │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── launcher │ │ │ │ │ │ └── Microsoft.Launcher │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── it │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── launcher │ │ │ │ │ │ └── Microsoft.Launcher │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ja │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── launcher │ │ │ │ │ │ └── Microsoft.Launcher │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ko │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── launcher │ │ │ │ │ │ └── Microsoft.Launcher │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── nl │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── launcher │ │ │ │ │ │ └── Microsoft.Launcher │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pl │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── launcher │ │ │ │ │ │ └── Microsoft.Launcher │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pt-BR │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── launcher │ │ │ │ │ │ └── Microsoft.Launcher │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pt-PT │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── launcher │ │ │ │ │ │ └── Microsoft.Launcher │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ru │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── launcher │ │ │ │ │ │ └── Microsoft.Launcher │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── sv │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── launcher │ │ │ │ │ │ └── Microsoft.Launcher │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── tr │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── launcher │ │ │ │ │ │ └── Microsoft.Launcher │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── zh-Hans │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── launcher │ │ │ │ │ │ └── Microsoft.Launcher │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ └── zh-Hant │ │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── Microsoft.Launcher │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── packages.config │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ ├── resource.base.h │ │ │ ├── trace.cpp │ │ │ └── trace.h │ │ ├── Plugins │ │ │ ├── Community.PowerToys.Run.Plugin.Everything │ │ │ │ ├── Community.PowerToys.Run.Plugin.Everything.csproj │ │ │ │ ├── ContextMenu.cs │ │ │ │ ├── ContextMenuLoader.cs │ │ │ │ ├── EverythingSettings.cs │ │ │ │ ├── Exceptions │ │ │ │ │ ├── CreateThreadException.cs │ │ │ │ │ ├── CreateWindowException.cs │ │ │ │ │ ├── IPCErrorException.cs │ │ │ │ │ ├── InvalidCallException.cs │ │ │ │ │ ├── InvalidIndexException.cs │ │ │ │ │ ├── MemoryErrorException.cs │ │ │ │ │ └── RegisterClassExException.cs │ │ │ │ ├── Images │ │ │ │ │ ├── Warning.dark.png │ │ │ │ │ ├── Warning.light.png │ │ │ │ │ ├── error.png │ │ │ │ │ ├── everything.dark.png │ │ │ │ │ ├── everything.light.png │ │ │ │ │ ├── file.png │ │ │ │ │ ├── find.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── image.png │ │ │ │ │ └── warning.png │ │ │ │ ├── Main.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ ├── SearchHelper │ │ │ │ │ ├── EverythingApi.cs │ │ │ │ │ ├── EverythingApiDllImport.cs │ │ │ │ │ ├── ResultType.cs │ │ │ │ │ └── SearchResult.cs │ │ │ │ └── plugin.json │ │ │ ├── Community.PowerToys.Run.Plugin.UnitConverter.UnitTest │ │ │ │ ├── Community.PowerToys.Run.Plugin.UnitConverter.UnitTest.csproj │ │ │ │ ├── InputInterpreterTests.cs │ │ │ │ └── UnitHandlerTests.cs │ │ │ ├── Community.PowerToys.Run.Plugin.UnitConverter │ │ │ │ ├── Community.PowerToys.Run.Plugin.UnitConverter.csproj │ │ │ │ ├── ConvertModel.cs │ │ │ │ ├── Images │ │ │ │ │ ├── unitconverter.dark.png │ │ │ │ │ └── unitconverter.light.png │ │ │ │ ├── InputInterpreter.cs │ │ │ │ ├── Main.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ ├── UnitConversionResult.cs │ │ │ │ ├── UnitHandler.cs │ │ │ │ └── plugin.json │ │ │ ├── Community.PowerToys.Run.Plugin.VSCodeWorkspaces │ │ │ │ ├── Community.PowerToys.Run.Plugin.VSCodeWorkspaces.csproj │ │ │ │ ├── Images │ │ │ │ │ ├── code-dark.png │ │ │ │ │ ├── code-light.png │ │ │ │ │ ├── folder.png │ │ │ │ │ └── monitor.png │ │ │ │ ├── LocProject.json │ │ │ │ ├── Main.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ ├── RealPath.cs │ │ │ │ ├── RemoteMachinesHelper │ │ │ │ │ ├── VSCodeRemoteMachine.cs │ │ │ │ │ └── VSCodeRemoteMachinesApi.cs │ │ │ │ ├── SshConfigParser │ │ │ │ │ ├── Parser.cs │ │ │ │ │ └── SshHost.cs │ │ │ │ ├── VSCodeHelper │ │ │ │ │ ├── VSCodeInstance.cs │ │ │ │ │ └── VSCodeInstances.cs │ │ │ │ ├── WorkspacesHelper │ │ │ │ │ ├── ParseVSCodeUri.cs │ │ │ │ │ ├── VSCodeStorageFile.cs │ │ │ │ │ ├── VSCodeWorkspace.cs │ │ │ │ │ └── VSCodeWorkspacesApi.cs │ │ │ │ ├── loc │ │ │ │ │ ├── cs │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Community.PowerToys.Run.Plugin.VSCodeWorkspaces │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── de │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Community.PowerToys.Run.Plugin.VSCodeWorkspaces │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── es │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Community.PowerToys.Run.Plugin.VSCodeWorkspaces │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── fr │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Community.PowerToys.Run.Plugin.VSCodeWorkspaces │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── hu │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Community.PowerToys.Run.Plugin.VSCodeWorkspaces │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── it │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Community.PowerToys.Run.Plugin.VSCodeWorkspaces │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ja │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Community.PowerToys.Run.Plugin.VSCodeWorkspaces │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ko │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Community.PowerToys.Run.Plugin.VSCodeWorkspaces │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── nl │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Community.PowerToys.Run.Plugin.VSCodeWorkspaces │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pl │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Community.PowerToys.Run.Plugin.VSCodeWorkspaces │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pt-BR │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Community.PowerToys.Run.Plugin.VSCodeWorkspaces │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pt-PT │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Community.PowerToys.Run.Plugin.VSCodeWorkspaces │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ru │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Community.PowerToys.Run.Plugin.VSCodeWorkspaces │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── sv │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Community.PowerToys.Run.Plugin.VSCodeWorkspaces │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── tr │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Community.PowerToys.Run.Plugin.VSCodeWorkspaces │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── zh-Hans │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Community.PowerToys.Run.Plugin.VSCodeWorkspaces │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ └── zh-Hant │ │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── launcher │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ └── Community.PowerToys.Run.Plugin.VSCodeWorkspaces │ │ │ │ │ │ └── Properties │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ └── plugin.json │ │ │ ├── Microsoft.Plugin.Folder.UnitTests │ │ │ │ ├── DriveOrSharedFolderTests.cs │ │ │ │ ├── InternalQueryFolderTests.cs │ │ │ │ └── Microsoft.Plugin.Folder.UnitTests.csproj │ │ │ ├── Microsoft.Plugin.Folder │ │ │ │ ├── ContextMenuLoader.cs │ │ │ │ ├── FolderLink.cs │ │ │ │ ├── FolderSettings.cs │ │ │ │ ├── IFolderProcessor.cs │ │ │ │ ├── Images │ │ │ │ │ ├── Warning.dark.png │ │ │ │ │ ├── Warning.light.png │ │ │ │ │ ├── copy.dark.png │ │ │ │ │ ├── copy.light.png │ │ │ │ │ ├── delete.dark.png │ │ │ │ │ ├── delete.light.png │ │ │ │ │ ├── file.dark.png │ │ │ │ │ ├── file.light.png │ │ │ │ │ ├── folder.dark.png │ │ │ │ │ ├── folder.light.png │ │ │ │ │ ├── user.dark.png │ │ │ │ │ └── user.light.png │ │ │ │ ├── InternalDirectoryProcessor.cs │ │ │ │ ├── LocProject.json │ │ │ │ ├── Main.cs │ │ │ │ ├── Microsoft.Plugin.Folder.csproj │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ ├── SearchResult.cs │ │ │ │ ├── Sources │ │ │ │ │ ├── FolderLinksSettings.cs │ │ │ │ │ ├── IFolderLinks.cs │ │ │ │ │ ├── IQueryFileSystemInfo.cs │ │ │ │ │ ├── IQueryInternalDirectory.cs │ │ │ │ │ ├── IShellAction.cs │ │ │ │ │ ├── Path │ │ │ │ │ │ ├── DisplayFileInfo.cs │ │ │ │ │ │ ├── DisplayType.cs │ │ │ │ │ │ ├── DriveInformation.cs │ │ │ │ │ │ ├── FolderHelper.cs │ │ │ │ │ │ ├── IDriveInformation.cs │ │ │ │ │ │ └── IFolderHelper.cs │ │ │ │ │ ├── QueryFileSystemInfo.cs │ │ │ │ │ ├── QueryInternalDirectory.cs │ │ │ │ │ ├── Result │ │ │ │ │ │ ├── CreateOpenCurrentFolderResult.cs │ │ │ │ │ │ ├── FileItemResult.cs │ │ │ │ │ │ ├── FileSystemResult.cs │ │ │ │ │ │ ├── FolderItemResult.cs │ │ │ │ │ │ ├── IItemResult.cs │ │ │ │ │ │ └── TruncatedItemResult.cs │ │ │ │ │ └── ShellAction.cs │ │ │ │ ├── UserFolderProcessor.cs │ │ │ │ ├── UserFolderResult.cs │ │ │ │ ├── loc │ │ │ │ │ ├── cs │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Folder │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── de │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Folder │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── es │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Folder │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── fr │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Folder │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── hu │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Folder │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── it │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Folder │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ja │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Folder │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ko │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Folder │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── nl │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Folder │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pl │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Folder │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pt-BR │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Folder │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pt-PT │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Folder │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ru │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Folder │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── sv │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Folder │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── tr │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Folder │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── zh-Hans │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Folder │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ └── zh-Hant │ │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── launcher │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ └── Microsoft.Plugin.Folder │ │ │ │ │ │ └── Properties │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ └── plugin.json │ │ │ ├── Microsoft.Plugin.Indexer │ │ │ │ ├── ContextMenu.cs │ │ │ │ ├── ContextMenuLoader.cs │ │ │ │ ├── DriveDetection │ │ │ │ │ ├── DriveInfoWrapper.cs │ │ │ │ │ ├── IndexerDriveDetection.cs │ │ │ │ │ └── RegistryWrapper.cs │ │ │ │ ├── Images │ │ │ │ │ ├── Warning.dark.png │ │ │ │ │ ├── Warning.light.png │ │ │ │ │ ├── indexer.dark.png │ │ │ │ │ └── indexer.light.png │ │ │ │ ├── IndexerSettings.cs │ │ │ │ ├── Interface │ │ │ │ │ ├── IDriveInfoWrapper.cs │ │ │ │ │ ├── IRegistryWrapper.cs │ │ │ │ │ └── ISearch.cs │ │ │ │ ├── LocProject.json │ │ │ │ ├── Main.cs │ │ │ │ ├── Microsoft.Plugin.Indexer.csproj │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ ├── SearchHelper │ │ │ │ │ ├── OleDBResult.cs │ │ │ │ │ ├── OleDBSearch.cs │ │ │ │ │ ├── SearchResult.cs │ │ │ │ │ └── WindowsSearchAPI.cs │ │ │ │ ├── loc │ │ │ │ │ ├── cs │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Indexer │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── de │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Indexer │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── es │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Indexer │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── fr │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Indexer │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── hu │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Indexer │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── it │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Indexer │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ja │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Indexer │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ko │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Indexer │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── nl │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Indexer │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pl │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Indexer │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pt-BR │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Indexer │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pt-PT │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Indexer │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ru │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Indexer │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── sv │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Indexer │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── tr │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Indexer │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── zh-Hans │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Indexer │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ └── zh-Hant │ │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── launcher │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ └── Microsoft.Plugin.Indexer │ │ │ │ │ │ └── Properties │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ └── plugin.json │ │ │ ├── Microsoft.Plugin.Program.UnitTests │ │ │ │ ├── AppxManifests │ │ │ │ │ ├── DevelopmentApp │ │ │ │ │ │ └── AppxManifest.xml │ │ │ │ │ ├── FrameworkApp │ │ │ │ │ │ └── AppxManifest.xml │ │ │ │ │ └── PackagedApp │ │ │ │ │ │ └── AppxManifest.xml │ │ │ │ ├── Microsoft.Plugin.Program.UnitTests.csproj │ │ │ │ ├── ProgramArgumentParser │ │ │ │ │ └── ProgramArgumentParserTests.cs │ │ │ │ ├── Programs │ │ │ │ │ ├── UWPTests.cs │ │ │ │ │ └── Win32Tests.cs │ │ │ │ └── Storage │ │ │ │ │ ├── ConcurrentQueueEventHandlerTest.cs │ │ │ │ │ ├── ListRepositoryTests.cs │ │ │ │ │ ├── PackageRepositoryTest.cs │ │ │ │ │ └── Win32ProgramRepositoryTest.cs │ │ │ ├── Microsoft.Plugin.Program │ │ │ │ ├── DisabledProgramSource.cs │ │ │ │ ├── Images │ │ │ │ │ ├── app.dark.png │ │ │ │ │ ├── app.light.png │ │ │ │ │ ├── disable.dark.png │ │ │ │ │ ├── disable.light.png │ │ │ │ │ ├── folder.dark.png │ │ │ │ │ ├── folder.light.png │ │ │ │ │ ├── shell.dark.png │ │ │ │ │ ├── shell.light.png │ │ │ │ │ ├── user.dark.png │ │ │ │ │ └── user.light.png │ │ │ │ ├── Interface │ │ │ │ │ └── IProgramArgumentParser.cs │ │ │ │ ├── LocProject.json │ │ │ │ ├── LocationConverter.cs │ │ │ │ ├── Logger │ │ │ │ │ └── ProgramLogger.cs │ │ │ │ ├── Main.cs │ │ │ │ ├── Microsoft.Plugin.Program.csproj │ │ │ │ ├── ProgramArgumentParser │ │ │ │ │ ├── DoubleDashProgramArgumentParser.cs │ │ │ │ │ ├── InferredProgramArgumentParser.cs │ │ │ │ │ └── NoArgumentsArgumentParser.cs │ │ │ │ ├── ProgramPluginSettings.cs │ │ │ │ ├── ProgramSource.cs │ │ │ │ ├── Programs │ │ │ │ │ ├── ApplicationActivationManager.cs │ │ │ │ │ ├── AppxFactory.cs │ │ │ │ │ ├── AppxPackageHelper.cs │ │ │ │ │ ├── IApplicationActivationManager.cs │ │ │ │ │ ├── IAppxFactory.cs │ │ │ │ │ ├── IAppxManifestApplication.cs │ │ │ │ │ ├── IAppxManifestApplicationsEnumerator.cs │ │ │ │ │ ├── IAppxManifestProperties.cs │ │ │ │ │ ├── IAppxManifestReader.cs │ │ │ │ │ ├── IPackage.cs │ │ │ │ │ ├── IPackageCatalog.cs │ │ │ │ │ ├── IPackageManager.cs │ │ │ │ │ ├── IProgram.cs │ │ │ │ │ ├── IShellLinkHelper.cs │ │ │ │ │ ├── PackageCatalogWrapper.cs │ │ │ │ │ ├── PackageWrapper.cs │ │ │ │ │ ├── PackagemanagerWrapper.cs │ │ │ │ │ ├── ShellLinkHelper.cs │ │ │ │ │ ├── UWP.cs │ │ │ │ │ ├── UWPApplication.cs │ │ │ │ │ └── Win32Program.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ ├── Storage │ │ │ │ │ ├── EventHandler.cs │ │ │ │ │ ├── IProgramRepository.cs │ │ │ │ │ ├── PackageRepository.cs │ │ │ │ │ ├── Win32ProgramFileSystemWatchers.cs │ │ │ │ │ └── Win32ProgramRepository.cs │ │ │ │ ├── SuffixesConverter.cs │ │ │ │ ├── Win32 │ │ │ │ │ └── NativeMethods.cs │ │ │ │ ├── loc │ │ │ │ │ ├── cs │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Program │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── de │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Program │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── es │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Program │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── fr │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Program │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── hu │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Program │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── it │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Program │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ja │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Program │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ko │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Program │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── nl │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Program │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pl │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Program │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pt-BR │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Program │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pt-PT │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Program │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ru │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Program │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── sv │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Program │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── tr │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Program │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── zh-Hans │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Program │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ └── zh-Hant │ │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── launcher │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ └── Microsoft.Plugin.Program │ │ │ │ │ │ └── Properties │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ └── plugin.json │ │ │ ├── Microsoft.Plugin.Shell │ │ │ │ ├── Images │ │ │ │ │ ├── shell.dark.png │ │ │ │ │ ├── shell.light.png │ │ │ │ │ ├── user.dark.png │ │ │ │ │ └── user.light.png │ │ │ │ ├── LocProject.json │ │ │ │ ├── Main.cs │ │ │ │ ├── Microsoft.Plugin.Shell.csproj │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ ├── ShellPluginSettings.cs │ │ │ │ ├── loc │ │ │ │ │ ├── cs │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Shell │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── de │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Shell │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── es │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Shell │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── fr │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Shell │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── hu │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Shell │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── it │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Shell │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ja │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Shell │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ko │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Shell │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── nl │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Shell │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pl │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Shell │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pt-BR │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Shell │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pt-PT │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Shell │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ru │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Shell │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── sv │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Shell │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── tr │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Shell │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── zh-Hans │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Shell │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ └── zh-Hant │ │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── launcher │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ └── Microsoft.Plugin.Shell │ │ │ │ │ │ └── Properties │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ └── plugin.json │ │ │ ├── Microsoft.Plugin.Uri.UnitTests │ │ │ │ ├── Microsoft.Plugin.Uri.UnitTests.csproj │ │ │ │ └── UriHelper │ │ │ │ │ └── ExtendedUriParserTests.cs │ │ │ ├── Microsoft.Plugin.Uri │ │ │ │ ├── Images │ │ │ │ │ ├── uri.dark.png │ │ │ │ │ └── uri.light.png │ │ │ │ ├── Interfaces │ │ │ │ │ ├── IRegistryWrapper.cs │ │ │ │ │ ├── IUriParser.cs │ │ │ │ │ └── IUrlResolver.cs │ │ │ │ ├── LocProject.json │ │ │ │ ├── Main.cs │ │ │ │ ├── Microsoft.Plugin.Uri.csproj │ │ │ │ ├── NativeMethods.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ ├── RegistryWrapper.cs │ │ │ │ ├── UriHelper │ │ │ │ │ ├── ExtendedUriParser.cs │ │ │ │ │ └── UriResolver.cs │ │ │ │ ├── UriSettings.cs │ │ │ │ ├── loc │ │ │ │ │ ├── cs │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Uri │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── de │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Uri │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── es │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Uri │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── fr │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Uri │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── hu │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Uri │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── it │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Uri │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ja │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Uri │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ko │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Uri │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── nl │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Uri │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pl │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Uri │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pt-BR │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Uri │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pt-PT │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Uri │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ru │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Uri │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── sv │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Uri │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── tr │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Uri │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── zh-Hans │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.Uri │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ └── zh-Hant │ │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── launcher │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ └── Microsoft.Plugin.Uri │ │ │ │ │ │ └── Properties │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ └── plugin.json │ │ │ ├── Microsoft.Plugin.WindowWalker │ │ │ │ ├── Components │ │ │ │ │ ├── FuzzyMatching.cs │ │ │ │ │ ├── LivePreview.cs │ │ │ │ │ ├── NativeMethods.cs │ │ │ │ │ ├── OpenWindows.cs │ │ │ │ │ ├── SearchController.cs │ │ │ │ │ ├── SearchResult.cs │ │ │ │ │ ├── SearchString.cs │ │ │ │ │ └── Window.cs │ │ │ │ ├── Images │ │ │ │ │ ├── windowwalker.dark.png │ │ │ │ │ └── windowwalker.light.png │ │ │ │ ├── LocProject.json │ │ │ │ ├── Main.cs │ │ │ │ ├── Microsoft.Plugin.WindowWalker.csproj │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ ├── loc │ │ │ │ │ ├── cs │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.WindowWalker │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── de │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.WindowWalker │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── es │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.WindowWalker │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── fr │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.WindowWalker │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── hu │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.WindowWalker │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── it │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.WindowWalker │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ja │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.WindowWalker │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ko │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.WindowWalker │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── nl │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.WindowWalker │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pl │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.WindowWalker │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pt-BR │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.WindowWalker │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pt-PT │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.WindowWalker │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ru │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.WindowWalker │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── sv │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.WindowWalker │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── tr │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.WindowWalker │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── zh-Hans │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.Plugin.WindowWalker │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ └── zh-Hant │ │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── launcher │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ └── Microsoft.Plugin.WindowWalker │ │ │ │ │ │ └── Properties │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ └── plugin.json │ │ │ ├── Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest │ │ │ │ ├── BracketHelperTests.cs │ │ │ │ ├── ExtendedCalculatorParserTests.cs │ │ │ │ ├── Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest.csproj │ │ │ │ └── NumberTranslatorTests.cs │ │ │ ├── Microsoft.PowerToys.Run.Plugin.Calculator │ │ │ │ ├── BracketHelper.cs │ │ │ │ ├── CalculateEngine.cs │ │ │ │ ├── CalculateHelper.cs │ │ │ │ ├── CalculateResult.cs │ │ │ │ ├── Images │ │ │ │ │ ├── calculator.dark.png │ │ │ │ │ └── calculator.light.png │ │ │ │ ├── LocProject.json │ │ │ │ ├── Main.cs │ │ │ │ ├── Microsoft.PowerToys.Run.Plugin.Calculator.csproj │ │ │ │ ├── NumberTranslator.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ ├── ResultHelper.cs │ │ │ │ ├── loc │ │ │ │ │ ├── cs │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ ├── Microsoft.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── de │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ ├── Microsoft.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── es │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ ├── Microsoft.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── fr │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ ├── Microsoft.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── hu │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ ├── Microsoft.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── it │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ ├── Microsoft.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ja │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ ├── Microsoft.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ko │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ ├── Microsoft.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── nl │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ ├── Microsoft.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pl │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ ├── Microsoft.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pt-BR │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ ├── Microsoft.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pt-PT │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ ├── Microsoft.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ru │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ ├── Microsoft.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── sv │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ ├── Microsoft.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── tr │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ ├── Microsoft.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── zh-Hans │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ ├── Microsoft.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Calculator │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ └── zh-Hant │ │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── launcher │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ ├── Microsoft.Plugin.Calculator │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Calculator │ │ │ │ │ │ └── Properties │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ └── plugin.json │ │ │ ├── Microsoft.PowerToys.Run.Plugin.Registry.UnitTest │ │ │ │ ├── Constants │ │ │ │ │ └── KeyNameTest.cs │ │ │ │ ├── Helper │ │ │ │ │ ├── QueryHelperTest.cs │ │ │ │ │ ├── RegistryHelperTest.cs │ │ │ │ │ └── ResultHelperTest.cs │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Registry.UnitTests.csproj │ │ │ ├── Microsoft.PowerToys.Run.Plugin.Registry │ │ │ │ ├── Classes │ │ │ │ │ └── RegistryEntry.cs │ │ │ │ ├── Constants │ │ │ │ │ ├── KeyName.cs │ │ │ │ │ └── MaxTextLength.cs │ │ │ │ ├── Enumerations │ │ │ │ │ └── TruncateSide.cs │ │ │ │ ├── Helper │ │ │ │ │ ├── ContextMenuHelper.cs │ │ │ │ │ ├── QueryHelper.cs │ │ │ │ │ ├── RegistryHelper.cs │ │ │ │ │ ├── ResultHelper.cs │ │ │ │ │ └── ValueHelper.cs │ │ │ │ ├── Images │ │ │ │ │ ├── reg.dark.png │ │ │ │ │ └── reg.light.png │ │ │ │ ├── LocProject.json │ │ │ │ ├── Main.cs │ │ │ │ ├── Microsoft.PowerToys.Run.Plugin.Registry.csproj │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ ├── loc │ │ │ │ │ ├── cs │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Registry │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── de │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Registry │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── es │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Registry │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── fr │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Registry │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── hu │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Registry │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── it │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Registry │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ja │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Registry │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ko │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Registry │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── nl │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Registry │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pl │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Registry │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pt-BR │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Registry │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pt-PT │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Registry │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ru │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Registry │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── sv │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Registry │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── tr │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Registry │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── zh-Hans │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Registry │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ └── zh-Hant │ │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── launcher │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Registry │ │ │ │ │ │ └── Properties │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ └── plugin.json │ │ │ ├── Microsoft.PowerToys.Run.Plugin.Service │ │ │ │ ├── Action.cs │ │ │ │ ├── Helpers │ │ │ │ │ └── ServiceHelper.cs │ │ │ │ ├── Images │ │ │ │ │ ├── service.dark.png │ │ │ │ │ └── service.light.png │ │ │ │ ├── LocProject.json │ │ │ │ ├── Main.cs │ │ │ │ ├── Microsoft.PowerToys.Run.Plugin.Service.csproj │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ ├── ServiceResult.cs │ │ │ │ ├── loc │ │ │ │ │ ├── cs │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Service │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── de │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Service │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── es │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Service │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── fr │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Service │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── hu │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Service │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── it │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Service │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ja │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Service │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ko │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Service │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── nl │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Service │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pl │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Service │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pt-BR │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Service │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pt-PT │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Service │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ru │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Service │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── sv │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Service │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── tr │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Service │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── zh-Hans │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Service │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ └── zh-Hant │ │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── launcher │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.Service │ │ │ │ │ │ └── Properties │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ └── plugin.json │ │ │ ├── Microsoft.PowerToys.Run.Plugin.System.UnitTests │ │ │ │ ├── ImageTests.cs │ │ │ │ ├── Microsoft.PowerToys.Run.Plugin.System.UnitTests.csproj │ │ │ │ └── QueryTests.cs │ │ │ ├── Microsoft.PowerToys.Run.Plugin.System │ │ │ │ ├── Images │ │ │ │ │ ├── lock.dark.png │ │ │ │ │ ├── lock.light.png │ │ │ │ │ ├── logoff.dark.png │ │ │ │ │ ├── logoff.light.png │ │ │ │ │ ├── recyclebin.dark.png │ │ │ │ │ ├── recyclebin.light.png │ │ │ │ │ ├── restart.dark.png │ │ │ │ │ ├── restart.light.png │ │ │ │ │ ├── shutdown.dark.png │ │ │ │ │ ├── shutdown.light.png │ │ │ │ │ ├── sleep.dark.png │ │ │ │ │ └── sleep.light.png │ │ │ │ ├── LocProject.json │ │ │ │ ├── Main.cs │ │ │ │ ├── Microsoft.PowerToys.Run.Plugin.System.csproj │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ ├── Win32 │ │ │ │ │ └── NativeMethods.cs │ │ │ │ ├── loc │ │ │ │ │ ├── cs │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.System │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── de │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.System │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── es │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.System │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── fr │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.System │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── hu │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.System │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── it │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.System │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ja │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.System │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ko │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.System │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── nl │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.System │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pl │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.System │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pt-BR │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.System │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── pt-PT │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.System │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── ru │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.System │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── sv │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.System │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── tr │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.System │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ ├── zh-Hans │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ └── launcher │ │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.System │ │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ │ └── zh-Hant │ │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── launcher │ │ │ │ │ │ └── Plugins │ │ │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.System │ │ │ │ │ │ └── Properties │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ └── plugin.json │ │ │ └── Microsoft.PowerToys.Run.Plugin.WindowsSettings │ │ │ │ ├── Classes │ │ │ │ └── WindowsSetting.cs │ │ │ │ ├── Helper │ │ │ │ ├── ContextMenuHelper.cs │ │ │ │ ├── JsonSettingsListHelper.cs │ │ │ │ ├── ResultHelper.cs │ │ │ │ ├── TranslationHelper.cs │ │ │ │ └── UnsupportedSettingsHelper.cs │ │ │ │ ├── Images │ │ │ │ ├── WindowsSettings.dark.png │ │ │ │ └── WindowsSettings.light.png │ │ │ │ ├── Main.cs │ │ │ │ ├── Microsoft.PowerToys.Run.Plugin.WindowsSettings.csproj │ │ │ │ ├── Properties │ │ │ │ ├── Resources.Designer.cs │ │ │ │ └── Resources.resx │ │ │ │ ├── WindowsSettings.json │ │ │ │ └── plugin.json │ │ ├── PowerLauncher.Telemetry │ │ │ ├── Events │ │ │ │ ├── LauncherBootEvent.cs │ │ │ │ ├── LauncherColdStateHotkeyEvent.cs │ │ │ │ ├── LauncherFirstDeleteEvent.cs │ │ │ │ ├── LauncherHideEvent.cs │ │ │ │ ├── LauncherQueryEvent.cs │ │ │ │ ├── LauncherResultActionEvent.cs │ │ │ │ ├── LauncherShowEvent.cs │ │ │ │ ├── LauncherWarmStateHotkeyEvent.cs │ │ │ │ ├── PluginModel.cs │ │ │ │ └── RunPluginsSettingsEvent.cs │ │ │ └── PowerLauncher.Telemetry.csproj │ │ ├── PowerLauncher │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Converters │ │ │ │ └── HighlightTextConverter.cs │ │ │ ├── CustomSearchBox.cs │ │ │ ├── Helper │ │ │ │ ├── DataWebRequestFactory.cs │ │ │ │ ├── ErrorReporting.cs │ │ │ │ ├── FontHelper.cs │ │ │ │ ├── KeyboardHelper.cs │ │ │ │ ├── LauncherNotificationActivator.cs │ │ │ │ ├── NativeEventWaiter.cs │ │ │ │ ├── NativeMethods.cs │ │ │ │ ├── ResultCollection.cs │ │ │ │ ├── SingleInstance`1.cs │ │ │ │ └── WindowsInteropHelper.cs │ │ │ ├── Images │ │ │ │ ├── Browser.png │ │ │ │ ├── EXE.png │ │ │ │ ├── Link.png │ │ │ │ ├── New Message.png │ │ │ │ ├── RunAsset.ico │ │ │ │ ├── RunResource.ico │ │ │ │ ├── app.dark.png │ │ │ │ ├── app.light.png │ │ │ │ ├── app_error.dark.png │ │ │ │ ├── app_error.light.png │ │ │ │ ├── calculator.png │ │ │ │ ├── cancel.png │ │ │ │ ├── close.png │ │ │ │ ├── cmd.png │ │ │ │ ├── color.png │ │ │ │ ├── copy.png │ │ │ │ ├── down.png │ │ │ │ ├── file.png │ │ │ │ ├── find.png │ │ │ │ ├── folder.png │ │ │ │ ├── history.png │ │ │ │ ├── image.png │ │ │ │ ├── lock.png │ │ │ │ ├── logoff.png │ │ │ │ ├── ok.png │ │ │ │ ├── open.png │ │ │ │ ├── plugin.png │ │ │ │ ├── recyclebin.png │ │ │ │ ├── restart.png │ │ │ │ ├── search.png │ │ │ │ ├── settings.png │ │ │ │ ├── shutdown.png │ │ │ │ ├── sleep.png │ │ │ │ ├── up.png │ │ │ │ ├── update.png │ │ │ │ └── warning.png │ │ │ ├── LauncherControl.xaml │ │ │ ├── LauncherControl.xaml.cs │ │ │ ├── LocProject.json │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── Plugin │ │ │ │ ├── PluginConfig.cs │ │ │ │ ├── PluginInstaller.cs │ │ │ │ ├── PluginManager.cs │ │ │ │ ├── QueryBuilder.cs │ │ │ │ └── README.md │ │ │ ├── PowerLauncher.csproj │ │ │ ├── Properties │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── PublicAPIInstance.cs │ │ │ ├── ReportWindow.xaml │ │ │ ├── ReportWindow.xaml.cs │ │ │ ├── ResultList.xaml │ │ │ ├── ResultList.xaml.cs │ │ │ ├── Settings.cs │ │ │ ├── SettingsReader.cs │ │ │ ├── Storage │ │ │ │ ├── HistoryItem.cs │ │ │ │ ├── QueryHistory.cs │ │ │ │ ├── Record.cs │ │ │ │ └── UserSelectedRecord.cs │ │ │ ├── Themes │ │ │ │ ├── Dark.xaml │ │ │ │ ├── HighContrast1.xaml │ │ │ │ ├── HighContrast2.xaml │ │ │ │ ├── HighContrastBlack.xaml │ │ │ │ ├── HighContrastWhite.xaml │ │ │ │ └── Light.xaml │ │ │ ├── ViewModel │ │ │ │ ├── ContextMenuItemViewModel.cs │ │ │ │ ├── MainViewModel.cs │ │ │ │ ├── RelayCommand.cs │ │ │ │ ├── ResultViewModel.cs │ │ │ │ ├── ResultsViewModel.cs │ │ │ │ └── SettingWindowViewModel.cs │ │ │ ├── app.manifest │ │ │ ├── app.png │ │ │ └── loc │ │ │ │ ├── cs │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── PowerLauncher │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── de │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── PowerLauncher │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── es │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── PowerLauncher │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── fr │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── PowerLauncher │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── hu │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── PowerLauncher │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── it │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── PowerLauncher │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ja │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── PowerLauncher │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ko │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── PowerLauncher │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── nl │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── PowerLauncher │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pl │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── PowerLauncher │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pt-BR │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── PowerLauncher │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pt-PT │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── PowerLauncher │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ru │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── PowerLauncher │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── sv │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── PowerLauncher │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── tr │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── PowerLauncher │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── zh-Hans │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── PowerLauncher │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ └── zh-Hant │ │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── launcher │ │ │ │ └── PowerLauncher │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ ├── README.md │ │ ├── Wox.Infrastructure │ │ │ ├── Exception │ │ │ │ └── ExceptionFormatter.cs │ │ │ ├── FileSystemHelper │ │ │ │ ├── DirectoryWrapper.cs │ │ │ │ ├── FileVersionInfoWrapper.cs │ │ │ │ ├── IDirectoryWrapper.cs │ │ │ │ └── IFileVersionInfoWrapper.cs │ │ │ ├── FuzzyMatcher.cs │ │ │ ├── Helper.cs │ │ │ ├── Hotkey │ │ │ │ ├── HotkeyModel.cs │ │ │ │ └── KeyEvent.cs │ │ │ ├── Http │ │ │ │ └── HttpClient.cs │ │ │ ├── Image │ │ │ │ ├── IImageHashGenerator.cs │ │ │ │ ├── IShellItem.cs │ │ │ │ ├── ImageCache.cs │ │ │ │ ├── ImageHashGenerator.cs │ │ │ │ ├── ImageLoader.cs │ │ │ │ ├── NativeMethods.cs │ │ │ │ └── WindowsThumbnailProvider.cs │ │ │ ├── MatchOption.cs │ │ │ ├── MatchResult.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Stopwatch.cs │ │ │ ├── Storage │ │ │ │ ├── BinaryStorage`1.cs │ │ │ │ ├── FileSystemWatcherWrapper.cs │ │ │ │ ├── IFileSystemWatcherWrapper.cs │ │ │ │ ├── IRepository`1.cs │ │ │ │ ├── ISavable.cs │ │ │ │ ├── IStorage`1.cs │ │ │ │ ├── JsonStorage`1.cs │ │ │ │ ├── ListRepository`1.cs │ │ │ │ ├── PluginJsonStorage`1.cs │ │ │ │ ├── StoragePowerToysVersionInfo.cs │ │ │ │ └── WoxJsonStorage`1.cs │ │ │ ├── StringMatcher.cs │ │ │ ├── UserSettings │ │ │ │ ├── CustomPluginHotkey.cs │ │ │ │ ├── HttpProxy.cs │ │ │ │ └── PowerToysRunSettings.cs │ │ │ └── Wox.Infrastructure.csproj │ │ ├── Wox.Plugin │ │ │ ├── ActionContext.cs │ │ │ ├── AllowedLanguage.cs │ │ │ ├── BaseModel.cs │ │ │ ├── Constant.cs │ │ │ ├── ContextMenuResult.cs │ │ │ ├── IContextMenu.cs │ │ │ ├── IDelayedExecutionPlugin.cs │ │ │ ├── IPlugin.cs │ │ │ ├── IPublicAPI.cs │ │ │ ├── ISettingProvider.cs │ │ │ ├── Interfaces │ │ │ │ └── IReloadable.cs │ │ │ ├── LibraryThemes │ │ │ │ ├── GeneratorParameters.json │ │ │ │ └── Theme.Template.xaml │ │ │ ├── LocProject.json │ │ │ ├── Logger │ │ │ │ └── Log.cs │ │ │ ├── PluginInitContext.cs │ │ │ ├── PluginMetadata.cs │ │ │ ├── PluginPair.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ └── Resources.resx │ │ │ ├── Query.cs │ │ │ ├── README.md │ │ │ ├── Result.cs │ │ │ ├── ResultUpdatedEventArgs.cs │ │ │ ├── SharedCommands │ │ │ │ ├── NativeMethods.cs │ │ │ │ └── ShellCommand.cs │ │ │ ├── SpecialKeyState.cs │ │ │ ├── ToolTipData.cs │ │ │ ├── Wox.Plugin.csproj │ │ │ └── loc │ │ │ │ ├── cs │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── Wox.Plugin │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── de │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── Wox.Plugin │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── es │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── Wox.Plugin │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── fr │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── Wox.Plugin │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── hu │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── Wox.Plugin │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── it │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── Wox.Plugin │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ja │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── Wox.Plugin │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ko │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── Wox.Plugin │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── nl │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── Wox.Plugin │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pl │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── Wox.Plugin │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pt-BR │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── Wox.Plugin │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pt-PT │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── Wox.Plugin │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ru │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── Wox.Plugin │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── sv │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── Wox.Plugin │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── tr │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── Wox.Plugin │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── zh-Hans │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── launcher │ │ │ │ │ └── Wox.Plugin │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ └── zh-Hant │ │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── launcher │ │ │ │ └── Wox.Plugin │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ └── Wox.Test │ │ │ ├── FuzzyMatcherTest.cs │ │ │ ├── MainViewModelTest.cs │ │ │ ├── PluginManagerTest.cs │ │ │ ├── Plugins │ │ │ ├── FolderPluginTest.cs │ │ │ ├── PluginInitTest.cs │ │ │ ├── ResultTest.cs │ │ │ ├── ToolTipDataTest.cs │ │ │ └── WindowsIndexerTest.cs │ │ │ ├── QueryBuilderTest.cs │ │ │ ├── ResultsViewModelTest.cs │ │ │ ├── Wox.Test.csproj │ │ │ └── WoxTest.cs │ ├── powerrename │ │ ├── README.md │ │ ├── UWPui │ │ │ ├── PowerRename.ico │ │ │ ├── PowerRenameUWPUI.cpp │ │ │ ├── PowerRenameUWPUI.rc │ │ │ ├── PowerRenameUWPUI.vcxproj │ │ │ ├── PowerRenameUWPUI.vcxproj.filters │ │ │ ├── packages.config │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ ├── resource.h │ │ │ └── targetver.h │ │ ├── dll │ │ │ ├── CLSID.h │ │ │ ├── LocProject.json │ │ │ ├── PowerRenameConstants.h │ │ │ ├── PowerRenameExt.base.rc │ │ │ ├── PowerRenameExt.cpp │ │ │ ├── PowerRenameExt.def │ │ │ ├── PowerRenameExt.h │ │ │ ├── PowerRenameExt.vcxproj │ │ │ ├── PowerRenameExt.vcxproj.filters │ │ │ ├── Resources.resx │ │ │ ├── dllmain.cpp │ │ │ ├── loc │ │ │ │ ├── cs │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── de │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── es │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── fr │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── hu │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── it │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ja │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ko │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── nl │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pl │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pt-BR │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pt-PT │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ru │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── sv │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── tr │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── zh-Hans │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── dll │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ └── zh-Hant │ │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── powerrename │ │ │ │ │ └── dll │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── packages.config │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ ├── resource.base.h │ │ │ └── targetver.h │ │ ├── lib │ │ │ ├── Helpers.cpp │ │ │ ├── Helpers.h │ │ │ ├── PowerRenameEnum.cpp │ │ │ ├── PowerRenameEnum.h │ │ │ ├── PowerRenameInterfaces.h │ │ │ ├── PowerRenameItem.cpp │ │ │ ├── PowerRenameItem.h │ │ │ ├── PowerRenameLib.vcxproj │ │ │ ├── PowerRenameManager.cpp │ │ │ ├── PowerRenameManager.h │ │ │ ├── PowerRenameRegEx.cpp │ │ │ ├── PowerRenameRegEx.h │ │ │ ├── Settings.cpp │ │ │ ├── Settings.h │ │ │ ├── packages.config │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ ├── srwlock.h │ │ │ ├── targetver.h │ │ │ ├── trace.cpp │ │ │ └── trace.h │ │ ├── testapp │ │ │ ├── PowerRenameTest.cpp │ │ │ ├── PowerRenameTest.h │ │ │ ├── PowerRenameTest.ico │ │ │ ├── PowerRenameTest.rc │ │ │ ├── PowerRenameTest.vcxproj │ │ │ ├── PowerRenameTest.vcxproj.filters │ │ │ ├── packages.config │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ ├── resource.h │ │ │ ├── small.ico │ │ │ └── targetver.h │ │ ├── ui │ │ │ ├── LocProject.json │ │ │ ├── PowerRename.ico │ │ │ ├── PowerRenameUI.base.rc │ │ │ ├── PowerRenameUI.cpp │ │ │ ├── PowerRenameUI.h │ │ │ ├── PowerRenameUI.vcxproj │ │ │ ├── PowerRenameUI.vcxproj.filters │ │ │ ├── Resources.resx │ │ │ ├── loc │ │ │ │ ├── cs │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── ui │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── de │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── ui │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── es │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── ui │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── fr │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── ui │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── hu │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── ui │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── it │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── ui │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ja │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── ui │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ko │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── ui │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── nl │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── ui │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pl │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── ui │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pt-BR │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── ui │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pt-PT │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── ui │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ru │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── ui │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── sv │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── ui │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── tr │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── ui │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── zh-Hans │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── powerrename │ │ │ │ │ │ └── ui │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ └── zh-Hant │ │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── powerrename │ │ │ │ │ └── ui │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── packages.config │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ ├── resource.base.h │ │ │ └── targetver.h │ │ └── unittests │ │ │ ├── MockPowerRenameItem.cpp │ │ │ ├── MockPowerRenameItem.h │ │ │ ├── MockPowerRenameManagerEvents.cpp │ │ │ ├── MockPowerRenameManagerEvents.h │ │ │ ├── MockPowerRenameRegExEvents.cpp │ │ │ ├── MockPowerRenameRegExEvents.h │ │ │ ├── PowerRenameLibUnitTests.vcxproj │ │ │ ├── PowerRenameLibUnitTests.vcxproj.filters │ │ │ ├── PowerRenameManagerTests.cpp │ │ │ ├── PowerRenameRegExBoostTests.cpp │ │ │ ├── PowerRenameRegExTests.cpp │ │ │ ├── PowerRenameUnitTests.rc │ │ │ ├── TestFileHelper.cpp │ │ │ ├── TestFileHelper.h │ │ │ ├── packages.config │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ ├── resource.h │ │ │ └── targetver.h │ ├── previewpane │ │ ├── MarkdownPreviewHandler │ │ │ ├── HTMLParsingExtension.cs │ │ │ ├── LocProject.json │ │ │ ├── MarkdownPreviewHandler.cs │ │ │ ├── MarkdownPreviewHandler.csproj │ │ │ ├── MarkdownPreviewHandlerControl.cs │ │ │ ├── Properties │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── Telemetry │ │ │ │ └── Events │ │ │ │ │ ├── MarkdownFileHandlerLoaded.cs │ │ │ │ │ ├── MarkdownFilePreviewError.cs │ │ │ │ │ └── MarkdownFilePreviewed.cs │ │ │ └── loc │ │ │ │ ├── cs │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── MarkDownPreviewHandler │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── de │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── MarkDownPreviewHandler │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── es │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── MarkDownPreviewHandler │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── fr │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── MarkDownPreviewHandler │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── hu │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── MarkDownPreviewHandler │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── it │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── MarkDownPreviewHandler │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ja │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── MarkDownPreviewHandler │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ko │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── MarkDownPreviewHandler │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── nl │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── MarkDownPreviewHandler │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pl │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── MarkDownPreviewHandler │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pt-BR │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── MarkDownPreviewHandler │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pt-PT │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── MarkDownPreviewHandler │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ru │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── MarkDownPreviewHandler │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── sv │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── MarkDownPreviewHandler │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── tr │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── MarkDownPreviewHandler │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── zh-Hans │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── MarkDownPreviewHandler │ │ │ │ │ └── Properties │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ └── zh-Hant │ │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── previewpane │ │ │ │ └── MarkDownPreviewHandler │ │ │ │ └── Properties │ │ │ │ └── Resources.resx.lcl │ │ ├── PreviewPaneUnitTests │ │ │ ├── HTMLParsingExtensionTest.cs │ │ │ ├── HelperFiles │ │ │ │ ├── MarkdownWithExternalImage.txt │ │ │ │ ├── MarkdownWithHTMLImageTag.txt │ │ │ │ └── MarkdownWithscript.txt │ │ │ ├── MarkdownPreviewHandlerTest.cs │ │ │ └── UnitTests-MarkdownPreviewHandler.csproj │ │ ├── README.md │ │ ├── STATestClassAttribute.cs │ │ ├── STATestMethodAttribute.cs │ │ ├── SvgPreviewHandler │ │ │ ├── LocProject.json │ │ │ ├── Resource.Designer.cs │ │ │ ├── Resource.resx │ │ │ ├── SvgPreviewControl.cs │ │ │ ├── SvgPreviewHandler.cs │ │ │ ├── SvgPreviewHandler.csproj │ │ │ ├── Telemetry │ │ │ │ └── Events │ │ │ │ │ ├── SvgFileHandlerLoaded.cs │ │ │ │ │ ├── SvgFilePreviewError.cs │ │ │ │ │ └── SvgFilePreviewed.cs │ │ │ ├── Utilities │ │ │ │ └── SvgPreviewHandlerHelper.cs │ │ │ └── loc │ │ │ │ ├── cs │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── SvgPreviewHandler │ │ │ │ │ └── Resource.resx.lcl │ │ │ │ ├── de │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── SvgPreviewHandler │ │ │ │ │ └── Resource.resx.lcl │ │ │ │ ├── es │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── SvgPreviewHandler │ │ │ │ │ └── Resource.resx.lcl │ │ │ │ ├── fr │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── SvgPreviewHandler │ │ │ │ │ └── Resource.resx.lcl │ │ │ │ ├── hu │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── SvgPreviewHandler │ │ │ │ │ └── Resource.resx.lcl │ │ │ │ ├── it │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── SvgPreviewHandler │ │ │ │ │ └── Resource.resx.lcl │ │ │ │ ├── ja │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── SvgPreviewHandler │ │ │ │ │ └── Resource.resx.lcl │ │ │ │ ├── ko │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── SvgPreviewHandler │ │ │ │ │ └── Resource.resx.lcl │ │ │ │ ├── nl │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── SvgPreviewHandler │ │ │ │ │ └── Resource.resx.lcl │ │ │ │ ├── pl │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── SvgPreviewHandler │ │ │ │ │ └── Resource.resx.lcl │ │ │ │ ├── pt-BR │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── SvgPreviewHandler │ │ │ │ │ └── Resource.resx.lcl │ │ │ │ ├── pt-PT │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── SvgPreviewHandler │ │ │ │ │ └── Resource.resx.lcl │ │ │ │ ├── ru │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── SvgPreviewHandler │ │ │ │ │ └── Resource.resx.lcl │ │ │ │ ├── sv │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── SvgPreviewHandler │ │ │ │ │ └── Resource.resx.lcl │ │ │ │ ├── tr │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── SvgPreviewHandler │ │ │ │ │ └── Resource.resx.lcl │ │ │ │ ├── zh-Hans │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── SvgPreviewHandler │ │ │ │ │ └── Resource.resx.lcl │ │ │ │ └── zh-Hant │ │ │ │ └── src │ │ │ │ └── modules │ │ │ │ └── previewpane │ │ │ │ └── SvgPreviewHandler │ │ │ │ └── Resource.resx.lcl │ │ ├── SvgThumbnailProvider │ │ │ ├── SvgThumbnailProvider.cs │ │ │ └── SvgThumbnailProvider.csproj │ │ ├── UnitTests-PreviewHandlerCommon │ │ │ ├── FileBasedPreviewHandlerTests.cs │ │ │ ├── FormHandlerControlTests.cs │ │ │ ├── NativeMethods.cs │ │ │ ├── PreviewHandlerBaseTests.cs │ │ │ ├── StreamBasedPreviewHandlerTests.cs │ │ │ ├── StreamWrapperTests.cs │ │ │ ├── UnitTests-PreviewHandlerCommon.csproj │ │ │ └── WebBrowserExtUnitTests.cs │ │ ├── UnitTests-SvgPreviewHandler │ │ │ ├── SvgPreviewControlTests.cs │ │ │ ├── SvgPreviewHandlerHelperTests.cs │ │ │ └── UnitTests-SvgPreviewHandler.csproj │ │ ├── UnitTests-SvgThumbnailProvider │ │ │ ├── SvgThumbnailProviderTests.cs │ │ │ ├── UnitTests-SvgThumbnailProvider.csproj │ │ │ └── app.config │ │ ├── common │ │ │ ├── PreviewHandlerCommon.csproj │ │ │ ├── Utilities │ │ │ │ └── ReadonlyStream.cs │ │ │ ├── cominterop │ │ │ │ ├── COLORREF.cs │ │ │ │ ├── IInitializeWithFile.cs │ │ │ │ ├── IInitializeWithStream.cs │ │ │ │ ├── IObjectWithSite.cs │ │ │ │ ├── IOleWindow.cs │ │ │ │ ├── IPreviewHandler.cs │ │ │ │ ├── IPreviewHandlerFrame.cs │ │ │ │ ├── IPreviewHandlerVisuals.cs │ │ │ │ ├── IThumbnailProvider.cs │ │ │ │ ├── IViewObject.cs │ │ │ │ ├── LOGFONT.cs │ │ │ │ ├── MSG.cs │ │ │ │ ├── NativeMethods.cs │ │ │ │ └── RECT.cs │ │ │ ├── controls │ │ │ │ ├── FormHandlerControl.cs │ │ │ │ ├── IPreviewHandlerControl.cs │ │ │ │ ├── WebBrowserDownloadControlFlags.cs │ │ │ │ └── WebBrowserExt.cs │ │ │ ├── examplehandler │ │ │ │ ├── CustomControlTest.cs │ │ │ │ └── TestCustomHandler.cs │ │ │ └── handlers │ │ │ │ ├── FileBasedPreviewHandler.cs │ │ │ │ ├── PreviewHandlerBase.cs │ │ │ │ └── StreamBasedPreviewHandler.cs │ │ ├── powerpreview │ │ │ ├── CLSID.h │ │ │ ├── LocProject.json │ │ │ ├── Resources.resx │ │ │ ├── dllmain.cpp │ │ │ ├── loc │ │ │ │ ├── cs │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── previewpane │ │ │ │ │ │ └── powerpreview │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── de │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── previewpane │ │ │ │ │ │ └── powerpreview │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── es │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── previewpane │ │ │ │ │ │ └── powerpreview │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── fr │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── previewpane │ │ │ │ │ │ └── powerpreview │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── hu │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── previewpane │ │ │ │ │ │ └── powerpreview │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── it │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── previewpane │ │ │ │ │ │ └── powerpreview │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ja │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── previewpane │ │ │ │ │ │ └── powerpreview │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ko │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── previewpane │ │ │ │ │ │ └── powerpreview │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── nl │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── previewpane │ │ │ │ │ │ └── powerpreview │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pl │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── previewpane │ │ │ │ │ │ └── powerpreview │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pt-BR │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── previewpane │ │ │ │ │ │ └── powerpreview │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── pt-PT │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── previewpane │ │ │ │ │ │ └── powerpreview │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── ru │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── previewpane │ │ │ │ │ │ └── powerpreview │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── sv │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── previewpane │ │ │ │ │ │ └── powerpreview │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── tr │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── previewpane │ │ │ │ │ │ └── powerpreview │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ ├── zh-Hans │ │ │ │ │ └── src │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── previewpane │ │ │ │ │ │ └── powerpreview │ │ │ │ │ │ └── Resources.resx.lcl │ │ │ │ └── zh-Hant │ │ │ │ │ └── src │ │ │ │ │ └── modules │ │ │ │ │ └── previewpane │ │ │ │ │ └── powerpreview │ │ │ │ │ └── Resources.resx.lcl │ │ │ ├── packages.config │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ ├── powerpreview.base.rc │ │ │ ├── powerpreview.cpp │ │ │ ├── powerpreview.def │ │ │ ├── powerpreview.h │ │ │ ├── powerpreview.vcxproj │ │ │ ├── powerpreview.vcxproj.filters │ │ │ ├── powerpreviewConstants.h │ │ │ ├── preview_handler.cpp │ │ │ ├── preview_handler.h │ │ │ ├── registry_wrapper.cpp │ │ │ ├── registry_wrapper.h │ │ │ ├── registry_wrapper_interface.h │ │ │ ├── resource.base.h │ │ │ ├── settings.cpp │ │ │ ├── settings.h │ │ │ ├── thumbnail_provider.cpp │ │ │ ├── thumbnail_provider.h │ │ │ ├── trace.cpp │ │ │ └── trace.h │ │ └── powerpreviewTest │ │ │ ├── FileExplorerPreviewSettingsTest.cpp │ │ │ ├── packages.config │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ ├── powerpreviewTest.rc │ │ │ ├── powerpreviewTest.vcxproj │ │ │ ├── powerpreviewTest.vcxproj.filters │ │ │ └── resource.h │ └── videoconference │ │ ├── VideoConferenceModule │ │ ├── Icons │ │ │ ├── Off-NotInUse Dark.png │ │ │ ├── Off-NotInUse Dark.svg │ │ │ ├── Off-NotInUse Light.png │ │ │ ├── Off-NotInUse Light.svg │ │ │ ├── Off-Off Dark.png │ │ │ ├── Off-Off Dark.svg │ │ │ ├── Off-Off Light.png │ │ │ ├── Off-Off Light.svg │ │ │ ├── Off-On Dark.png │ │ │ ├── Off-On Dark.svg │ │ │ ├── Off-On Light.png │ │ │ ├── Off-On Light.svg │ │ │ ├── On-NotInUse Dark.png │ │ │ ├── On-NotInUse Dark.svg │ │ │ ├── On-NotInUse Light.png │ │ │ ├── On-NotInUse Light.svg │ │ │ ├── On-Off Dark.png │ │ │ ├── On-Off Dark.svg │ │ │ ├── On-Off Light.png │ │ │ ├── On-Off Light.svg │ │ │ ├── On-On Dark.png │ │ │ ├── On-On Dark.svg │ │ │ ├── On-On Light.png │ │ │ └── On-On Light.svg │ │ ├── README.md │ │ ├── Toolbar.cpp │ │ ├── Toolbar.h │ │ ├── Video Conference.filters │ │ ├── Video Conference.vcxproj │ │ ├── Video Conference.vcxproj.filters │ │ ├── VideoConferenceModule.cpp │ │ ├── VideoConferenceModule.h │ │ ├── black.bmp │ │ ├── dllmain.cpp │ │ ├── framework.h │ │ ├── packages.config │ │ ├── pch.cpp │ │ ├── pch.h │ │ ├── trace.cpp │ │ └── trace.h │ │ ├── VideoConferenceProxyFilter │ │ ├── DirectShowUtils.cpp │ │ ├── DirectShowUtils.h │ │ ├── ImageLoading.cpp │ │ ├── VideoCaptureDevice.cpp │ │ ├── VideoCaptureDevice.h │ │ ├── VideoCaptureProxyFilter.cpp │ │ ├── VideoCaptureProxyFilter.h │ │ ├── VideoConferenceProxyFilter.vcxproj │ │ ├── VideoConferenceProxyFilterx86.sln │ │ ├── build_vcm_x86.cmd │ │ ├── dllmain.cpp │ │ ├── module.def │ │ └── packages.config │ │ ├── VideoConferenceShared │ │ ├── CameraStateUpdateChannels.cpp │ │ ├── CameraStateUpdateChannels.h │ │ ├── Logging.cpp │ │ ├── Logging.h │ │ ├── MicrophoneDevice.cpp │ │ ├── MicrophoneDevice.h │ │ ├── SerializedSharedMemory.cpp │ │ ├── SerializedSharedMemory.h │ │ ├── VideoCaptureDeviceList.cpp │ │ ├── VideoCaptureDeviceList.h │ │ ├── VideoConferenceShared.vcxproj │ │ ├── naming.cpp │ │ ├── naming.h │ │ ├── packages.config │ │ ├── username.cpp │ │ └── username.h │ │ └── make_cab.ddf ├── runner │ ├── ActionRunnerUtils.h │ ├── CentralizedHotkeys.cpp │ ├── CentralizedHotkeys.h │ ├── LocProject.json │ ├── PowerToys.exe.manifest │ ├── Resources.resx │ ├── RestartManagement.cpp │ ├── RestartManagement.h │ ├── UpdateUtils.cpp │ ├── UpdateUtils.h │ ├── auto_start_helper.cpp │ ├── auto_start_helper.h │ ├── centralized_kb_hook.cpp │ ├── centralized_kb_hook.h │ ├── general_settings.cpp │ ├── general_settings.h │ ├── loc │ │ ├── cs │ │ │ └── src │ │ │ │ └── runner │ │ │ │ └── Resources.resx.lcl │ │ ├── de │ │ │ └── src │ │ │ │ └── runner │ │ │ │ └── Resources.resx.lcl │ │ ├── es │ │ │ └── src │ │ │ │ └── runner │ │ │ │ └── Resources.resx.lcl │ │ ├── fr │ │ │ └── src │ │ │ │ └── runner │ │ │ │ └── Resources.resx.lcl │ │ ├── hu │ │ │ └── src │ │ │ │ └── runner │ │ │ │ └── Resources.resx.lcl │ │ ├── it │ │ │ └── src │ │ │ │ └── runner │ │ │ │ └── Resources.resx.lcl │ │ ├── ja │ │ │ └── src │ │ │ │ └── runner │ │ │ │ └── Resources.resx.lcl │ │ ├── ko │ │ │ └── src │ │ │ │ └── runner │ │ │ │ └── Resources.resx.lcl │ │ ├── nl │ │ │ └── src │ │ │ │ └── runner │ │ │ │ └── Resources.resx.lcl │ │ ├── pl │ │ │ └── src │ │ │ │ └── runner │ │ │ │ └── Resources.resx.lcl │ │ ├── pt-BR │ │ │ └── src │ │ │ │ └── runner │ │ │ │ └── Resources.resx.lcl │ │ ├── pt-PT │ │ │ └── src │ │ │ │ └── runner │ │ │ │ └── Resources.resx.lcl │ │ ├── ru │ │ │ └── src │ │ │ │ └── runner │ │ │ │ └── Resources.resx.lcl │ │ ├── sv │ │ │ └── src │ │ │ │ └── runner │ │ │ │ └── Resources.resx.lcl │ │ ├── tr │ │ │ └── src │ │ │ │ └── runner │ │ │ │ └── Resources.resx.lcl │ │ ├── zh-Hans │ │ │ └── src │ │ │ │ └── runner │ │ │ │ └── Resources.resx.lcl │ │ └── zh-Hant │ │ │ └── src │ │ │ └── runner │ │ │ └── Resources.resx.lcl │ ├── main.cpp │ ├── packages.config │ ├── pch.cpp │ ├── pch.h │ ├── powertoy_module.cpp │ ├── powertoy_module.h │ ├── resource.base.h │ ├── restart_elevated.cpp │ ├── restart_elevated.h │ ├── runner.base.rc │ ├── runner.vcxproj │ ├── runner.vcxproj.filters │ ├── settings_telemetry.cpp │ ├── settings_telemetry.h │ ├── settings_window.cpp │ ├── settings_window.h │ ├── svgs │ │ └── icon.ico │ ├── trace.cpp │ ├── trace.h │ ├── tray_icon.cpp │ ├── tray_icon.h │ ├── unhandled_exception_handler.cpp │ └── unhandled_exception_handler.h ├── settings-ui │ ├── Directory.Build.targets │ ├── Microsoft.PowerToys.Settings.UI.Library │ │ ├── AppSpecificKeysDataModel.cs │ │ ├── AwakeProperties.cs │ │ ├── AwakeSettings.cs │ │ ├── BasePTModuleSettings.cs │ │ ├── BoolProperty.cs │ │ ├── BoolPropertyJsonConverter.cs │ │ ├── ColorFormatModel.cs │ │ ├── ColorPickerProperties.cs │ │ ├── ColorPickerSettings.cs │ │ ├── ConfigDefaults.cs │ │ ├── CustomAction │ │ │ ├── CustomActionDataModel.cs │ │ │ ├── CustomNamePolicy.cs │ │ │ ├── ModuleCustomAction.cs │ │ │ └── SendCustomAction.cs │ │ ├── DoubleProperty.cs │ │ ├── EnabledModules.cs │ │ ├── Enumerations │ │ │ ├── ColorPickerActivationAction.cs │ │ │ └── ColorRepresentationType.cs │ │ ├── FZConfigProperties.cs │ │ ├── FancyZonesSettings.cs │ │ ├── GeneralSettings.cs │ │ ├── GeneralSettingsCustomAction.cs │ │ ├── GenericProperty`1.cs │ │ ├── Helpers │ │ │ └── Observable.cs │ │ ├── HotkeySettings.cs │ │ ├── HotkeySettingsControlHook.cs │ │ ├── ISettingsPath.cs │ │ ├── ISettingsUtils.cs │ │ ├── ImageResizerProperties.cs │ │ ├── ImageResizerSettings.cs │ │ ├── ImageSize.cs │ │ ├── ImagerResizerKeepDateModified.cs │ │ ├── ImageresizerCustomSizeProperty.cs │ │ ├── ImageresizerFallbackEncoder.cs │ │ ├── ImageresizerSizes.cs │ │ ├── IntProperty.cs │ │ ├── Interfaces │ │ │ ├── ISettingsConfig.cs │ │ │ └── ISettingsRepository`1.cs │ │ ├── KeyBoardKeysProperty.cs │ │ ├── KeyboardManagerProfile.cs │ │ ├── KeyboardManagerProperties.cs │ │ ├── KeyboardManagerSettings.cs │ │ ├── KeysDataModel.cs │ │ ├── Microsoft.PowerToys.Settings.UI.Library.csproj │ │ ├── OutGoingGeneralSettings.cs │ │ ├── PluginAdditionalOption.cs │ │ ├── PowerLauncherPluginSettings.cs │ │ ├── PowerLauncherProperties.cs │ │ ├── PowerLauncherSettings.cs │ │ ├── PowerPreviewProperties.cs │ │ ├── PowerPreviewSettings.cs │ │ ├── PowerRenameLocalProperties.cs │ │ ├── PowerRenameProperties.cs │ │ ├── PowerRenameSettings.cs │ │ ├── PowerRenameSettingsIPCMessage.cs │ │ ├── RemapKeysDataModel.cs │ │ ├── SettingPath.cs │ │ ├── SettingsRepository`1.cs │ │ ├── SettingsUtils.cs │ │ ├── ShortcutGuideProperties.cs │ │ ├── ShortcutGuideSettings.cs │ │ ├── ShortcutGuideSettingsIPCMessage.cs │ │ ├── ShortcutsKeyDataModel.cs │ │ ├── SndAwakeSettings.cs │ │ ├── SndImageResizerSettings.cs │ │ ├── SndKeyboardManagerSettings.cs │ │ ├── SndModuleSettings`1.cs │ │ ├── SndPowerPreviewSettings.cs │ │ ├── SndPowerRenameSettings.cs │ │ ├── SndShortcutGuideSettings.cs │ │ ├── SndVideoConferenceSettings.cs │ │ ├── StringProperty.cs │ │ ├── Telemetry │ │ │ └── Events │ │ │ │ ├── OobeModuleRunEvent.cs │ │ │ │ ├── OobeSectionEvent.cs │ │ │ │ ├── OobeSettingsEvent.cs │ │ │ │ ├── OobeStartedEvent.cs │ │ │ │ ├── SettingsBootEvent.cs │ │ │ │ └── SettingsEnabledEvent.cs │ │ ├── UpdatingSettings.cs │ │ ├── Utilities │ │ │ ├── Helper.cs │ │ │ ├── IIOProvider.cs │ │ │ ├── Logger.cs │ │ │ ├── NativeMethods.cs │ │ │ └── SystemIOProvider.cs │ │ ├── VideoConferenceConfigProperties.cs │ │ ├── VideoConferenceSettings.cs │ │ ├── VideoConferenceSettingsIPCMessage.cs │ │ └── ViewModels │ │ │ ├── AwakeViewModel.cs │ │ │ ├── ColorPickerViewModel.cs │ │ │ ├── Commands │ │ │ ├── ButtonClickCommand.cs │ │ │ ├── RelayCommand.cs │ │ │ └── RelayCommand`1.cs │ │ │ ├── FancyZonesViewModel.cs │ │ │ ├── GeneralViewModel.cs │ │ │ ├── ImageResizerViewModel.cs │ │ │ ├── KeyboardManagerViewModel.cs │ │ │ ├── PluginAdditionalOptionViewModel.cs │ │ │ ├── PowerLauncherPluginViewModel.cs │ │ │ ├── PowerLauncherViewModel.cs │ │ │ ├── PowerPreviewViewModel.cs │ │ │ ├── PowerRenameViewModel.cs │ │ │ ├── ShortcutGuideViewModel.cs │ │ │ └── VideoConferenceViewModel.cs │ ├── Microsoft.PowerToys.Settings.UI.UnitTests │ │ ├── BackwardsCompatibility │ │ │ ├── BackCompatTestProperties.cs │ │ │ └── TestFiles │ │ │ │ ├── CorruptJson │ │ │ │ └── Microsoft │ │ │ │ │ └── PowerToys │ │ │ │ │ └── settings.json │ │ │ │ ├── V0.21.1 │ │ │ │ └── Microsoft │ │ │ │ │ └── PowerToys │ │ │ │ │ ├── ColorPicker │ │ │ │ │ └── settings.json │ │ │ │ │ ├── FancyZones │ │ │ │ │ ├── app-zone-history.json │ │ │ │ │ ├── settings.json │ │ │ │ │ └── zones-settings.json │ │ │ │ │ ├── File Explorer │ │ │ │ │ └── settings.json │ │ │ │ │ ├── ImageResizer │ │ │ │ │ ├── image-resizer-settings.json │ │ │ │ │ ├── settings.json │ │ │ │ │ └── sizes.json │ │ │ │ │ ├── Keyboard Manager │ │ │ │ │ ├── default.json │ │ │ │ │ └── settings.json │ │ │ │ │ ├── PowerRename │ │ │ │ │ ├── power-rename-settings.json │ │ │ │ │ └── power-rename-ui-flags │ │ │ │ │ ├── PowerToys Run │ │ │ │ │ └── settings.json │ │ │ │ │ ├── Shortcut Guide │ │ │ │ │ └── settings.json │ │ │ │ │ ├── settings.json │ │ │ │ │ └── update_state.json │ │ │ │ ├── v0.18.2 │ │ │ │ └── Microsoft │ │ │ │ │ └── PowerToys │ │ │ │ │ ├── ColorPicker │ │ │ │ │ └── settings.json │ │ │ │ │ ├── FancyZones │ │ │ │ │ ├── app-zone-history.json │ │ │ │ │ ├── settings.json │ │ │ │ │ └── zones-settings.json │ │ │ │ │ ├── File Explorer │ │ │ │ │ └── settings.json │ │ │ │ │ ├── ImageResizer │ │ │ │ │ ├── image-resizer-settings.json │ │ │ │ │ ├── settings.json │ │ │ │ │ └── sizes.json │ │ │ │ │ ├── Keyboard Manager │ │ │ │ │ ├── default.json │ │ │ │ │ └── settings.json │ │ │ │ │ ├── PowerRename │ │ │ │ │ ├── power-rename-settings.json │ │ │ │ │ └── power-rename-ui-flags │ │ │ │ │ ├── PowerToys Run │ │ │ │ │ └── settings.json │ │ │ │ │ ├── Shortcut Guide │ │ │ │ │ └── settings.json │ │ │ │ │ ├── settings.json │ │ │ │ │ └── update_state.json │ │ │ │ ├── v0.19.2 │ │ │ │ └── Microsoft │ │ │ │ │ └── PowerToys │ │ │ │ │ ├── FancyZones │ │ │ │ │ ├── app-zone-history.json │ │ │ │ │ ├── settings.json │ │ │ │ │ └── zones-settings.json │ │ │ │ │ ├── File Explorer │ │ │ │ │ └── settings.json │ │ │ │ │ ├── ImageResizer │ │ │ │ │ ├── image-resizer-settings.json │ │ │ │ │ ├── settings.json │ │ │ │ │ └── sizes.json │ │ │ │ │ ├── Keyboard Manager │ │ │ │ │ ├── default.json │ │ │ │ │ └── settings.json │ │ │ │ │ ├── PowerRename │ │ │ │ │ ├── power-rename-settings.json │ │ │ │ │ └── power-rename-ui-flags │ │ │ │ │ ├── PowerToys Run │ │ │ │ │ └── settings.json │ │ │ │ │ ├── Shortcut Guide │ │ │ │ │ └── settings.json │ │ │ │ │ ├── settings.json │ │ │ │ │ └── update_state.json │ │ │ │ ├── v0.20.1 │ │ │ │ └── Microsoft │ │ │ │ │ └── PowerToys │ │ │ │ │ ├── ColorPicker │ │ │ │ │ └── settings.json │ │ │ │ │ ├── FancyZones │ │ │ │ │ ├── app-zone-history.json │ │ │ │ │ ├── settings.json │ │ │ │ │ └── zones-settings.json │ │ │ │ │ ├── File Explorer │ │ │ │ │ └── settings.json │ │ │ │ │ ├── ImageResizer │ │ │ │ │ ├── image-resizer-settings.json │ │ │ │ │ ├── settings.json │ │ │ │ │ └── sizes.json │ │ │ │ │ ├── Keyboard Manager │ │ │ │ │ ├── default.json │ │ │ │ │ └── settings.json │ │ │ │ │ ├── PowerRename │ │ │ │ │ ├── power-rename-settings.json │ │ │ │ │ └── power-rename-ui-flags │ │ │ │ │ ├── PowerToys Run │ │ │ │ │ └── settings.json │ │ │ │ │ ├── Shortcut Guide │ │ │ │ │ └── settings.json │ │ │ │ │ ├── settings.json │ │ │ │ │ └── update_state.json │ │ │ │ └── v0.22.0 │ │ │ │ └── Microsoft │ │ │ │ └── PowerToys │ │ │ │ ├── ColorPicker │ │ │ │ └── settings.json │ │ │ │ ├── FancyZones │ │ │ │ ├── app-zone-history.json │ │ │ │ ├── settings.json │ │ │ │ └── zones-settings.json │ │ │ │ ├── File Explorer │ │ │ │ └── settings.json │ │ │ │ ├── ImageResizer │ │ │ │ ├── image-resizer-settings.json │ │ │ │ ├── settings.json │ │ │ │ └── sizes.json │ │ │ │ ├── Keyboard Manager │ │ │ │ ├── default.json │ │ │ │ └── settings.json │ │ │ │ ├── PowerRename │ │ │ │ ├── power-rename-settings.json │ │ │ │ └── power-rename-ui-flags │ │ │ │ ├── PowerToys Run │ │ │ │ └── settings.json │ │ │ │ ├── Shortcut Guide │ │ │ │ └── settings.json │ │ │ │ ├── Video Conference │ │ │ │ └── settings.json │ │ │ │ ├── settings.json │ │ │ │ └── update_state.json │ │ ├── Microsoft.PowerToys.Settings.UI.UnitTests.csproj │ │ ├── Mocks │ │ │ ├── IIOProviderMocks.cs │ │ │ └── ISettingsUtilsMocks.cs │ │ ├── ModelsTests │ │ │ ├── BasePTModuleSettingsTest.cs │ │ │ ├── BasePTSettingsTest.cs │ │ │ ├── HelperTest.cs │ │ │ ├── SettingsRepositoryTest.cs │ │ │ └── SettingsUtilsTests.cs │ │ └── ViewModelTests │ │ │ ├── ColorPicker.cs │ │ │ ├── FancyZones.cs │ │ │ ├── General.cs │ │ │ ├── ImageResizer.cs │ │ │ ├── KeyboardManager.cs │ │ │ ├── PowerLauncherViewModelTest.cs │ │ │ ├── PowerPreview.cs │ │ │ ├── PowerRename.cs │ │ │ └── ShortcutGuide.cs │ ├── Microsoft.PowerToys.Settings.UI │ │ ├── Activation │ │ │ ├── ActivationHandler.cs │ │ │ └── DefaultActivationHandler.cs │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── FluentIcons │ │ │ │ ├── FluentIconsAwake.png │ │ │ │ ├── FluentIconsColorPicker.png │ │ │ │ ├── FluentIconsFancyZones.png │ │ │ │ ├── FluentIconsFileExplorerPreview.png │ │ │ │ ├── FluentIconsImageResizer.png │ │ │ │ ├── FluentIconsKeyboardManager.png │ │ │ │ ├── FluentIconsPowerRename.png │ │ │ │ ├── FluentIconsPowerToys.png │ │ │ │ ├── FluentIconsPowerToysRun.png │ │ │ │ ├── FluentIconsShortcutGuide.png │ │ │ │ └── FluentIconsVideoConferenceMute.png │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── Logo.scale-200.png │ │ │ ├── Modules │ │ │ │ ├── Awake.png │ │ │ │ ├── ColorPicker.png │ │ │ │ ├── FancyZones.png │ │ │ │ ├── ImageResizer.png │ │ │ │ ├── KBM.png │ │ │ │ ├── OOBE │ │ │ │ │ ├── Awake.png │ │ │ │ │ ├── ColorPicker.gif │ │ │ │ │ ├── FancyZones.gif │ │ │ │ │ ├── FileExplorer.png │ │ │ │ │ ├── ImageResizer.gif │ │ │ │ │ ├── KBM.gif │ │ │ │ │ ├── OOBEPTHero.png │ │ │ │ │ ├── OOBEShortcutGuide.png │ │ │ │ │ ├── PowerRename.gif │ │ │ │ │ ├── Run.gif │ │ │ │ │ └── VideoConferenceMute.png │ │ │ │ ├── PT.png │ │ │ │ ├── PowerLauncher.png │ │ │ │ ├── PowerPreview.png │ │ │ │ ├── PowerRename.png │ │ │ │ ├── ShortcutGuide.png │ │ │ │ └── VideoConference.png │ │ │ ├── SplashScreen.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ ├── StoreLogo.scale-100.png │ │ │ ├── Wide310x150Logo.scale-200.png │ │ │ ├── logo.png │ │ │ ├── logo150.png │ │ │ └── logo44.png │ │ ├── Behaviors │ │ │ ├── NavigationViewHeaderBehavior.cs │ │ │ └── NavigationViewHeaderMode.cs │ │ ├── Controls │ │ │ ├── HotkeySettingsControl.xaml │ │ │ ├── HotkeySettingsControl.xaml.cs │ │ │ ├── KeyVisual │ │ │ │ ├── KeyVisual.cs │ │ │ │ └── KeyVisual.xaml │ │ │ ├── ShortcutTextControl.xaml │ │ │ ├── ShortcutTextControl.xaml.cs │ │ │ ├── ShortcutVisualControl.xaml │ │ │ ├── ShortcutVisualControl.xaml.cs │ │ │ └── SidePanel │ │ │ │ ├── SettingsPageControl.xaml │ │ │ │ ├── SettingsPageControl.xaml.cs │ │ │ │ └── SidePanelLink.cs │ │ ├── Converters │ │ │ ├── AwakeModeToBoolConverter.cs │ │ │ ├── ModuleEnabledToOpacityConverter.cs │ │ │ ├── UpdatingStateCannotDownloadToVisibilityConverter.cs │ │ │ ├── UpdatingStateReadyToDownloadToVisibilityConverter.cs │ │ │ ├── UpdatingStateReadyToInstallToVisibilityConverter.cs │ │ │ └── UpdatingStateUpToDateToVisibilityConverter.cs │ │ ├── Helpers │ │ │ ├── NativeKeyboardHelper.cs │ │ │ ├── NativeMethods.cs │ │ │ ├── NavHelper.cs │ │ │ ├── Observable.cs │ │ │ ├── RelayCommand.cs │ │ │ ├── ResourceExtensions.cs │ │ │ └── StartProcessHelper.cs │ │ ├── ICoreWindowInterop.cs │ │ ├── Interop.cs │ │ ├── LocProject.json │ │ ├── Microsoft.PowerToys.Settings.UI.csproj │ │ ├── OOBE │ │ │ ├── Enums │ │ │ │ └── PowerToysModulesEnum.cs │ │ │ ├── ViewModel │ │ │ │ ├── OobePowerToysModule.cs │ │ │ │ └── OobeShellViewModel.cs │ │ │ └── Views │ │ │ │ ├── OobeAwake.xaml │ │ │ │ ├── OobeAwake.xaml.cs │ │ │ │ ├── OobeColorPicker.xaml │ │ │ │ ├── OobeColorPicker.xaml.cs │ │ │ │ ├── OobeFancyZones.xaml │ │ │ │ ├── OobeFancyZones.xaml.cs │ │ │ │ ├── OobeFileExplorer.xaml │ │ │ │ ├── OobeFileExplorer.xaml.cs │ │ │ │ ├── OobeImageResizer.xaml │ │ │ │ ├── OobeImageResizer.xaml.cs │ │ │ │ ├── OobeKBM.xaml │ │ │ │ ├── OobeKBM.xaml.cs │ │ │ │ ├── OobeOverview.xaml │ │ │ │ ├── OobeOverview.xaml.cs │ │ │ │ ├── OobePowerRename.xaml │ │ │ │ ├── OobePowerRename.xaml.cs │ │ │ │ ├── OobeRun.xaml │ │ │ │ ├── OobeRun.xaml.cs │ │ │ │ ├── OobeShellPage.xaml │ │ │ │ ├── OobeShellPage.xaml.cs │ │ │ │ ├── OobeShortcutGuide.xaml │ │ │ │ ├── OobeShortcutGuide.xaml.cs │ │ │ │ ├── OobeVideoConference.xaml │ │ │ │ └── OobeVideoConference.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ │ └── Default.rd.xml │ │ ├── Services │ │ │ ├── ActivationService.cs │ │ │ └── NavigationService.cs │ │ ├── Strings │ │ │ └── en-us │ │ │ │ └── Resources.resw │ │ ├── Styles │ │ │ ├── Button.xaml │ │ │ ├── Page.xaml │ │ │ ├── TextBlock.xaml │ │ │ ├── _Colors.xaml │ │ │ ├── _FontSizes.xaml │ │ │ ├── _Sizes.xaml │ │ │ └── _Thickness.xaml │ │ ├── ViewModels │ │ │ ├── Commands │ │ │ │ └── ButtonClickCommand.cs │ │ │ └── ShellViewModel.cs │ │ ├── Views │ │ │ ├── AwakePage.xaml │ │ │ ├── AwakePage.xaml.cs │ │ │ ├── ColorPickerPage.xaml │ │ │ ├── ColorPickerPage.xaml.cs │ │ │ ├── FancyZonesPage.xaml │ │ │ ├── FancyZonesPage.xaml.cs │ │ │ ├── GeneralPage.xaml │ │ │ ├── GeneralPage.xaml.cs │ │ │ ├── ImageResizerPage.xaml │ │ │ ├── ImageResizerPage.xaml.cs │ │ │ ├── KeyboardManagerPage.xaml │ │ │ ├── KeyboardManagerPage.xaml.cs │ │ │ ├── PowerLauncherPage.xaml │ │ │ ├── PowerLauncherPage.xaml.cs │ │ │ ├── PowerPreviewPage.xaml │ │ │ ├── PowerPreviewPage.xaml.cs │ │ │ ├── PowerRenamePage.xaml │ │ │ ├── PowerRenamePage.xaml.cs │ │ │ ├── ShellPage.xaml │ │ │ ├── ShellPage.xaml.cs │ │ │ ├── ShortcutGuidePage.xaml │ │ │ ├── ShortcutGuidePage.xaml.cs │ │ │ ├── VideoConference.xaml │ │ │ ├── VideoConference.xaml.cs │ │ │ └── VisibleIfNotEmpty.cs │ │ └── loc │ │ │ ├── cs │ │ │ └── src │ │ │ │ └── settings-ui │ │ │ │ └── Microsoft.PowerToys.Settings.UI │ │ │ │ └── Strings │ │ │ │ └── en-us │ │ │ │ └── Resources.resw.lcl │ │ │ ├── de │ │ │ └── src │ │ │ │ └── settings-ui │ │ │ │ └── Microsoft.PowerToys.Settings.UI │ │ │ │ └── Strings │ │ │ │ └── en-us │ │ │ │ └── Resources.resw.lcl │ │ │ ├── es │ │ │ └── src │ │ │ │ └── settings-ui │ │ │ │ └── Microsoft.PowerToys.Settings.UI │ │ │ │ └── Strings │ │ │ │ └── en-us │ │ │ │ └── Resources.resw.lcl │ │ │ ├── fr │ │ │ └── src │ │ │ │ └── settings-ui │ │ │ │ └── Microsoft.PowerToys.Settings.UI │ │ │ │ └── Strings │ │ │ │ └── en-us │ │ │ │ └── Resources.resw.lcl │ │ │ ├── hu │ │ │ └── src │ │ │ │ └── settings-ui │ │ │ │ └── Microsoft.PowerToys.Settings.UI │ │ │ │ └── Strings │ │ │ │ └── en-us │ │ │ │ └── Resources.resw.lcl │ │ │ ├── it │ │ │ └── src │ │ │ │ └── settings-ui │ │ │ │ └── Microsoft.PowerToys.Settings.UI │ │ │ │ └── Strings │ │ │ │ └── en-us │ │ │ │ └── Resources.resw.lcl │ │ │ ├── ja │ │ │ └── src │ │ │ │ └── settings-ui │ │ │ │ └── Microsoft.PowerToys.Settings.UI │ │ │ │ └── Strings │ │ │ │ └── en-us │ │ │ │ └── Resources.resw.lcl │ │ │ ├── ko │ │ │ └── src │ │ │ │ └── settings-ui │ │ │ │ └── Microsoft.PowerToys.Settings.UI │ │ │ │ └── Strings │ │ │ │ └── en-us │ │ │ │ └── Resources.resw.lcl │ │ │ ├── nl │ │ │ └── src │ │ │ │ └── settings-ui │ │ │ │ └── Microsoft.PowerToys.Settings.UI │ │ │ │ └── Strings │ │ │ │ └── en-us │ │ │ │ └── Resources.resw.lcl │ │ │ ├── pl │ │ │ └── src │ │ │ │ └── settings-ui │ │ │ │ └── Microsoft.PowerToys.Settings.UI │ │ │ │ └── Strings │ │ │ │ └── en-us │ │ │ │ └── Resources.resw.lcl │ │ │ ├── pt-BR │ │ │ └── src │ │ │ │ └── settings-ui │ │ │ │ └── Microsoft.PowerToys.Settings.UI │ │ │ │ └── Strings │ │ │ │ └── en-us │ │ │ │ └── Resources.resw.lcl │ │ │ ├── pt-PT │ │ │ └── src │ │ │ │ └── settings-ui │ │ │ │ └── Microsoft.PowerToys.Settings.UI │ │ │ │ └── Strings │ │ │ │ └── en-us │ │ │ │ └── Resources.resw.lcl │ │ │ ├── ru │ │ │ └── src │ │ │ │ └── settings-ui │ │ │ │ └── Microsoft.PowerToys.Settings.UI │ │ │ │ └── Strings │ │ │ │ └── en-us │ │ │ │ └── Resources.resw.lcl │ │ │ ├── sv │ │ │ └── src │ │ │ │ └── settings-ui │ │ │ │ └── Microsoft.PowerToys.Settings.UI │ │ │ │ └── Strings │ │ │ │ └── en-us │ │ │ │ └── Resources.resw.lcl │ │ │ ├── tr │ │ │ └── src │ │ │ │ └── settings-ui │ │ │ │ └── Microsoft.PowerToys.Settings.UI │ │ │ │ └── Strings │ │ │ │ └── en-us │ │ │ │ └── Resources.resw.lcl │ │ │ ├── zh-Hans │ │ │ └── src │ │ │ │ └── settings-ui │ │ │ │ └── Microsoft.PowerToys.Settings.UI │ │ │ │ └── Strings │ │ │ │ └── en-us │ │ │ │ └── Resources.resw.lcl │ │ │ └── zh-Hant │ │ │ └── src │ │ │ └── settings-ui │ │ │ └── Microsoft.PowerToys.Settings.UI │ │ │ └── Strings │ │ │ └── en-us │ │ │ └── Resources.resw.lcl │ └── PowerToys.Settings │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── OobeWindow.xaml │ │ ├── OobeWindow.xaml.cs │ │ ├── PowerToys.Settings.csproj │ │ ├── Program.cs │ │ ├── Utils.cs │ │ ├── app.manifest │ │ └── icon.ico └── tests │ └── win-app-driver │ ├── FancyZonesTests │ ├── EditorCanvasZoneResizeTests.cs │ ├── EditorCustomLayoutsTests.cs │ ├── EditorGridZoneResizeTests.cs │ ├── EditorOpeningTests.cs │ ├── EditorSettingsTests.cs │ ├── EditorTemplatesApplyTests.cs │ ├── EditorTemplatesEditTests.cs │ ├── FancyZonesEditor.cs │ ├── FancyZonesSettingsTests.cs │ └── README.md │ ├── PowerToysSession.cs │ ├── PowerToysTrayTests.cs │ ├── README.md │ ├── TestShortcutGuideHelper.cs │ └── win-app-driver.csproj └── tools ├── BugReportTool ├── BugReportTool.sln └── BugReportTool │ ├── BugReportTool.vcxproj │ ├── BugReportTool.vcxproj.filters │ ├── EventViewer.cpp │ ├── EventViewer.h │ ├── Main.cpp │ ├── RegistryUtils.cpp │ ├── RegistryUtils.h │ ├── ReportMonitorInfo.cpp │ ├── ReportMonitorInfo.h │ ├── XmlDocumentEx.cpp │ ├── XmlDocumentEx.h │ ├── ZipTools │ ├── zipfolder.cpp │ └── zipfolder.h │ └── packages.config ├── CleanUp_tool ├── CleanUp_tool.sln ├── CleanUp_tool.vcxproj ├── CleanUp_tool.vcxproj.filters └── main.cpp ├── CleanUp_tool_powershell_script └── CleanUp_tool.ps1 ├── FancyZone_HitTest ├── FancyZone_HitTest.sln └── FancyZone_HitTest │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── FancyZone_HitTest.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Utilities.cs │ ├── VisualData.cs │ └── VisualDataComparer.cs ├── FancyZonesEditor_DPI_netcore_test ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── FancyZonesEditor_DPI_netcore_test.csproj ├── FancyZonesEditor_DPI_netcore_test.sln ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── MonitorsInfo.cs ├── OverlayWindow.xaml ├── OverlayWindow.xaml.cs └── app.manifest ├── FancyZonesEditor_DPI_test ├── FancyZonesEditor_DPI_test.sln └── FancyZonesEditor_DPI_test │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── FancyZonesEditor_DPI_test.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── MonitorInfo.cs │ ├── OverlayWindow.xaml │ ├── OverlayWindow.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── app.manifest │ └── packages.config ├── FancyZones_DrawLayoutTest ├── FancyZones_DrawLayoutTest.cpp ├── FancyZones_DrawLayoutTest.h ├── FancyZones_DrawLayoutTest.rc ├── FancyZones_DrawLayoutTest.sln ├── FancyZones_DrawLayoutTest.vcxproj ├── FancyZones_DrawLayoutTest.vcxproj.filters ├── README.md ├── Resource.h └── framework.h ├── FancyZones_zonable_tester ├── FancyZones_zonable_tester.sln ├── FancyZones_zonable_tester.vcxproj ├── FancyZones_zonable_tester.vcxproj.filters └── main.cpp ├── WebcamReportTool ├── DirectShowUtils.cpp ├── DirectShowUtils.h ├── WebcamReportTool.sln ├── WebcamReportTool.vcxproj ├── main.cpp └── packages.config ├── build ├── build-essentials.ps1 ├── convert-resx-to-rc.ps1 ├── convert-stringtable-to-resx.ps1 ├── versionSetting.ps1 └── video_conference_make_cab.ps1 ├── localization └── move_uwp_resources.ps1 └── project_template ├── ModuleTemplate.zip ├── ModuleTemplate ├── $projectname$.rc ├── ModuleTemplate.vcxproj ├── ModuleTemplateCompileTest.vcxproj ├── ModuleTemplateCompileTest.vcxproj.filters ├── README.md ├── dllmain.cpp ├── packages.config ├── pch.cpp ├── pch.h ├── resource.h ├── trace.cpp └── trace.h ├── PowerToyTemplate.sln ├── README.md └── TemplateIcon.ico /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.github/ISSUE_TEMPLATE/documentation-issue.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/translation_issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.github/ISSUE_TEMPLATE/translation_issue.yml -------------------------------------------------------------------------------- /.github/actions/spell-check/advice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.github/actions/spell-check/advice.md -------------------------------------------------------------------------------- /.github/actions/spell-check/excludes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.github/actions/spell-check/excludes.txt -------------------------------------------------------------------------------- /.github/actions/spell-check/expect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.github/actions/spell-check/expect.txt -------------------------------------------------------------------------------- /.github/actions/spell-check/patterns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.github/actions/spell-check/patterns.txt -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/spelling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.github/workflows/spelling.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pipelines/build-bootstrapper.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.pipelines/build-bootstrapper.cmd -------------------------------------------------------------------------------- /.pipelines/build-installer.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.pipelines/build-installer.cmd -------------------------------------------------------------------------------- /.pipelines/build-localization.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.pipelines/build-localization.cmd -------------------------------------------------------------------------------- /.pipelines/build-tools.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.pipelines/build-tools.cmd -------------------------------------------------------------------------------- /.pipelines/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.pipelines/build.cmd -------------------------------------------------------------------------------- /.pipelines/ci/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.pipelines/ci/ci.yml -------------------------------------------------------------------------------- /.pipelines/ci/templates/build-powertoys-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.pipelines/ci/templates/build-powertoys-ci.yml -------------------------------------------------------------------------------- /.pipelines/ci/templates/build-powertoys-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.pipelines/ci/templates/build-powertoys-steps.yml -------------------------------------------------------------------------------- /.pipelines/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.pipelines/packages.config -------------------------------------------------------------------------------- /.pipelines/pipeline.user.windows.buddy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.pipelines/pipeline.user.windows.buddy.yml -------------------------------------------------------------------------------- /.pipelines/pipeline.user.windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.pipelines/pipeline.user.windows.yml -------------------------------------------------------------------------------- /.pipelines/restore-dependencies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.pipelines/restore-dependencies.ps1 -------------------------------------------------------------------------------- /.pipelines/restore-dependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.pipelines/restore-dependencies.yml -------------------------------------------------------------------------------- /.pipelines/restore-installer.cmd: -------------------------------------------------------------------------------- 1 | cd /D "%~dp0" 2 | 3 | nuget restore ../installer/PowerToysSetup.sln || exit /b 1 4 | -------------------------------------------------------------------------------- /.pipelines/restore-localization.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.pipelines/restore-localization.cmd -------------------------------------------------------------------------------- /.pipelines/restore-telemetry.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.pipelines/restore-telemetry.cmd -------------------------------------------------------------------------------- /.pipelines/restore-tools.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.pipelines/restore-tools.cmd -------------------------------------------------------------------------------- /.pipelines/restore-windowsSdk17134.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.pipelines/restore-windowsSdk17134.ps1 -------------------------------------------------------------------------------- /.pipelines/restore.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.pipelines/restore.cmd -------------------------------------------------------------------------------- /.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/.vsconfig -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COMMUNITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/COMMUNITY.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cpp.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/Cpp.Build.props -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/NOTICE.md -------------------------------------------------------------------------------- /PowerToys.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/PowerToys.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /deps/cxxopts.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/deps/cxxopts.props -------------------------------------------------------------------------------- /deps/expected.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/deps/expected.props -------------------------------------------------------------------------------- /deps/restore_git_submodules.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/deps/restore_git_submodules.props -------------------------------------------------------------------------------- /deps/spdlog.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/deps/spdlog.props -------------------------------------------------------------------------------- /doc/devdocs/akaLinks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/akaLinks.md -------------------------------------------------------------------------------- /doc/devdocs/common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/common.md -------------------------------------------------------------------------------- /doc/devdocs/guidance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/guidance.md -------------------------------------------------------------------------------- /doc/devdocs/localization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/localization.md -------------------------------------------------------------------------------- /doc/devdocs/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/logging.md -------------------------------------------------------------------------------- /doc/devdocs/modules/fancyzones.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/modules/fancyzones.md -------------------------------------------------------------------------------- /doc/devdocs/modules/interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/modules/interface.md -------------------------------------------------------------------------------- /doc/devdocs/modules/keyboardmanager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/modules/keyboardmanager/README.md -------------------------------------------------------------------------------- /doc/devdocs/modules/keyboardmanager/japanese-ime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/modules/keyboardmanager/japanese-ime.png -------------------------------------------------------------------------------- /doc/devdocs/modules/keyboardmanager/keyboardmanager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/modules/keyboardmanager/keyboardmanager.md -------------------------------------------------------------------------------- /doc/devdocs/modules/launcher/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/modules/launcher/architecture.md -------------------------------------------------------------------------------- /doc/devdocs/modules/launcher/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/modules/launcher/debugging.md -------------------------------------------------------------------------------- /doc/devdocs/modules/launcher/new-plugin-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/modules/launcher/new-plugin-checklist.md -------------------------------------------------------------------------------- /doc/devdocs/modules/launcher/plugins/calculator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/modules/launcher/plugins/calculator.md -------------------------------------------------------------------------------- /doc/devdocs/modules/launcher/plugins/folder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/modules/launcher/plugins/folder.md -------------------------------------------------------------------------------- /doc/devdocs/modules/launcher/plugins/indexer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/modules/launcher/plugins/indexer.md -------------------------------------------------------------------------------- /doc/devdocs/modules/launcher/plugins/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/modules/launcher/plugins/overview.md -------------------------------------------------------------------------------- /doc/devdocs/modules/launcher/plugins/program.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/modules/launcher/plugins/program.md -------------------------------------------------------------------------------- /doc/devdocs/modules/launcher/plugins/registry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/modules/launcher/plugins/registry.md -------------------------------------------------------------------------------- /doc/devdocs/modules/launcher/plugins/shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/modules/launcher/plugins/shell.md -------------------------------------------------------------------------------- /doc/devdocs/modules/launcher/plugins/sys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/modules/launcher/plugins/sys.md -------------------------------------------------------------------------------- /doc/devdocs/modules/launcher/plugins/uri.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/modules/launcher/plugins/uri.md -------------------------------------------------------------------------------- /doc/devdocs/modules/launcher/plugins/windowwalker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/modules/launcher/plugins/windowwalker.md -------------------------------------------------------------------------------- /doc/devdocs/modules/launcher/project_structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/modules/launcher/project_structure.md -------------------------------------------------------------------------------- /doc/devdocs/modules/launcher/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/modules/launcher/readme.md -------------------------------------------------------------------------------- /doc/devdocs/modules/launcher/telemetry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/modules/launcher/telemetry.md -------------------------------------------------------------------------------- /doc/devdocs/modules/powerrename.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/modules/powerrename.md -------------------------------------------------------------------------------- /doc/devdocs/modules/shortcut_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/modules/shortcut_guide.md -------------------------------------------------------------------------------- /doc/devdocs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/readme.md -------------------------------------------------------------------------------- /doc/devdocs/run-as-admin-detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/run-as-admin-detection.md -------------------------------------------------------------------------------- /doc/devdocs/runner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/runner.md -------------------------------------------------------------------------------- /doc/devdocs/settings-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/settings-reference.md -------------------------------------------------------------------------------- /doc/devdocs/settings-web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/settings-web.md -------------------------------------------------------------------------------- /doc/devdocs/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/settings.md -------------------------------------------------------------------------------- /doc/devdocs/settingsv2/communication-with-modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/settingsv2/communication-with-modules.md -------------------------------------------------------------------------------- /doc/devdocs/settingsv2/hotkeycontrol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/settingsv2/hotkeycontrol.md -------------------------------------------------------------------------------- /doc/devdocs/settingsv2/project-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/settingsv2/project-overview.md -------------------------------------------------------------------------------- /doc/devdocs/settingsv2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/settingsv2/readme.md -------------------------------------------------------------------------------- /doc/devdocs/settingsv2/runner-ipc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/settingsv2/runner-ipc.md -------------------------------------------------------------------------------- /doc/devdocs/settingsv2/settings-utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/settingsv2/settings-utilities.md -------------------------------------------------------------------------------- /doc/devdocs/settingsv2/telemetry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/settingsv2/telemetry.md -------------------------------------------------------------------------------- /doc/devdocs/settingsv2/ui-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/settingsv2/ui-architecture.md -------------------------------------------------------------------------------- /doc/devdocs/settingsv2/viewmodels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/settingsv2/viewmodels.md -------------------------------------------------------------------------------- /doc/devdocs/settingsv2/xaml-island-tweaks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/settingsv2/xaml-island-tweaks.md -------------------------------------------------------------------------------- /doc/devdocs/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/style.md -------------------------------------------------------------------------------- /doc/devdocs/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/devdocs/tools.md -------------------------------------------------------------------------------- /doc/images/icons/Awake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/icons/Awake.png -------------------------------------------------------------------------------- /doc/images/icons/Color Picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/icons/Color Picker.png -------------------------------------------------------------------------------- /doc/images/icons/FancyZones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/icons/FancyZones.png -------------------------------------------------------------------------------- /doc/images/icons/FancyZones_MDL2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/icons/FancyZones_MDL2.svg -------------------------------------------------------------------------------- /doc/images/icons/File Explorer Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/icons/File Explorer Preview.png -------------------------------------------------------------------------------- /doc/images/icons/Image Resizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/icons/Image Resizer.png -------------------------------------------------------------------------------- /doc/images/icons/Keyboard Manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/icons/Keyboard Manager.png -------------------------------------------------------------------------------- /doc/images/icons/PowerRename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/icons/PowerRename.png -------------------------------------------------------------------------------- /doc/images/icons/PowerToys Run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/icons/PowerToys Run.png -------------------------------------------------------------------------------- /doc/images/icons/PowerToys icon/ICO/PowerToys.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/icons/PowerToys icon/ICO/PowerToys.ico -------------------------------------------------------------------------------- /doc/images/icons/PowerToys icon/ICO/PowerToys_14.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/icons/PowerToys icon/ICO/PowerToys_14.ico -------------------------------------------------------------------------------- /doc/images/icons/PowerToys icon/Vintage/Logo-HiRes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/icons/PowerToys icon/Vintage/Logo-HiRes.png -------------------------------------------------------------------------------- /doc/images/icons/PowerToys icon/Vintage/Logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/icons/PowerToys icon/Vintage/Logo.jpg -------------------------------------------------------------------------------- /doc/images/icons/PowerToys icon/Vintage/Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/icons/PowerToys icon/Vintage/Logo.svg -------------------------------------------------------------------------------- /doc/images/icons/Shortcut Guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/icons/Shortcut Guide.png -------------------------------------------------------------------------------- /doc/images/icons/Video Conference Mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/icons/Video Conference Mute.png -------------------------------------------------------------------------------- /doc/images/launcher/launcher_dependency.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/launcher/launcher_dependency.PNG -------------------------------------------------------------------------------- /doc/images/launcher/plugins/calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/launcher/plugins/calculator.png -------------------------------------------------------------------------------- /doc/images/launcher/plugins/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/launcher/plugins/folder.png -------------------------------------------------------------------------------- /doc/images/launcher/plugins/indexer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/launcher/plugins/indexer.png -------------------------------------------------------------------------------- /doc/images/launcher/plugins/program.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/launcher/plugins/program.png -------------------------------------------------------------------------------- /doc/images/launcher/plugins/shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/launcher/plugins/shell.png -------------------------------------------------------------------------------- /doc/images/launcher/plugins/sys.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/launcher/plugins/sys.gif -------------------------------------------------------------------------------- /doc/images/launcher/plugins/uri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/launcher/plugins/uri.png -------------------------------------------------------------------------------- /doc/images/launcher/plugins/windowwalker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/launcher/plugins/windowwalker.png -------------------------------------------------------------------------------- /doc/images/launcher/pt_run_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/launcher/pt_run_ui.png -------------------------------------------------------------------------------- /doc/images/launcher/ui_vm_interaction.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/launcher/ui_vm_interaction.PNG -------------------------------------------------------------------------------- /doc/images/launcher/vm_plugin_interaction.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/launcher/vm_plugin_interaction.PNG -------------------------------------------------------------------------------- /doc/images/overview/Awake_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/Awake_large.png -------------------------------------------------------------------------------- /doc/images/overview/Awake_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/Awake_small.png -------------------------------------------------------------------------------- /doc/images/overview/ColorPicker_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/ColorPicker_large.png -------------------------------------------------------------------------------- /doc/images/overview/ColorPicker_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/ColorPicker_small.png -------------------------------------------------------------------------------- /doc/images/overview/FancyZones_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/FancyZones_large.png -------------------------------------------------------------------------------- /doc/images/overview/FancyZones_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/FancyZones_small.png -------------------------------------------------------------------------------- /doc/images/overview/ImageResizer_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/ImageResizer_large.png -------------------------------------------------------------------------------- /doc/images/overview/ImageResizer_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/ImageResizer_small.png -------------------------------------------------------------------------------- /doc/images/overview/KBM_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/KBM_large.png -------------------------------------------------------------------------------- /doc/images/overview/KBM_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/KBM_small.png -------------------------------------------------------------------------------- /doc/images/overview/Original/Awake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/Original/Awake.png -------------------------------------------------------------------------------- /doc/images/overview/Original/ColorPicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/Original/ColorPicker.png -------------------------------------------------------------------------------- /doc/images/overview/Original/FancyZones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/Original/FancyZones.png -------------------------------------------------------------------------------- /doc/images/overview/Original/ImageResizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/Original/ImageResizer.png -------------------------------------------------------------------------------- /doc/images/overview/Original/KBM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/Original/KBM.png -------------------------------------------------------------------------------- /doc/images/overview/Original/PowerLauncher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/Original/PowerLauncher.png -------------------------------------------------------------------------------- /doc/images/overview/Original/PowerPreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/Original/PowerPreview.png -------------------------------------------------------------------------------- /doc/images/overview/Original/PowerRename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/Original/PowerRename.png -------------------------------------------------------------------------------- /doc/images/overview/Original/ShortcutGuide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/Original/ShortcutGuide.png -------------------------------------------------------------------------------- /doc/images/overview/Original/VideoConference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/Original/VideoConference.png -------------------------------------------------------------------------------- /doc/images/overview/PT hero image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/PT hero image.png -------------------------------------------------------------------------------- /doc/images/overview/PT_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/PT_large.png -------------------------------------------------------------------------------- /doc/images/overview/PT_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/PT_small.png -------------------------------------------------------------------------------- /doc/images/overview/PowerLauncher_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/PowerLauncher_large.png -------------------------------------------------------------------------------- /doc/images/overview/PowerLauncher_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/PowerLauncher_small.png -------------------------------------------------------------------------------- /doc/images/overview/PowerPreview_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/PowerPreview_large.png -------------------------------------------------------------------------------- /doc/images/overview/PowerPreview_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/PowerPreview_small.png -------------------------------------------------------------------------------- /doc/images/overview/PowerRename_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/PowerRename_large.png -------------------------------------------------------------------------------- /doc/images/overview/PowerRename_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/PowerRename_small.png -------------------------------------------------------------------------------- /doc/images/overview/ShortcutGuide_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/ShortcutGuide_large.png -------------------------------------------------------------------------------- /doc/images/overview/ShortcutGuide_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/ShortcutGuide_small.png -------------------------------------------------------------------------------- /doc/images/overview/VideoConference_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/VideoConference_large.png -------------------------------------------------------------------------------- /doc/images/overview/VideoConference_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/overview/VideoConference_small.png -------------------------------------------------------------------------------- /doc/images/runner/tray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/runner/tray.png -------------------------------------------------------------------------------- /doc/images/settings/bool_toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/settings/bool_toggle.png -------------------------------------------------------------------------------- /doc/images/settings/choice_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/settings/choice_group.png -------------------------------------------------------------------------------- /doc/images/settings/color_picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/settings/color_picker.png -------------------------------------------------------------------------------- /doc/images/settings/custom_action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/settings/custom_action.png -------------------------------------------------------------------------------- /doc/images/settings/dropdown_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/settings/dropdown_1.png -------------------------------------------------------------------------------- /doc/images/settings/dropdown_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/settings/dropdown_2.png -------------------------------------------------------------------------------- /doc/images/settings/example_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/settings/example_settings.png -------------------------------------------------------------------------------- /doc/images/settings/general_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/settings/general_settings.png -------------------------------------------------------------------------------- /doc/images/settings/hotkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/settings/hotkey.png -------------------------------------------------------------------------------- /doc/images/settings/int_spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/settings/int_spinner.png -------------------------------------------------------------------------------- /doc/images/settings/multiline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/settings/multiline.png -------------------------------------------------------------------------------- /doc/images/settings/shortcut_guide_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/settings/shortcut_guide_settings.png -------------------------------------------------------------------------------- /doc/images/settings/string.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/settings/string.png -------------------------------------------------------------------------------- /doc/images/settingsv2/file-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/settingsv2/file-explorer.png -------------------------------------------------------------------------------- /doc/images/settingsv2/settingshotkeycontrol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/settingsv2/settingshotkeycontrol.png -------------------------------------------------------------------------------- /doc/images/settingsv2/ui-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/images/settingsv2/ui-architecture.png -------------------------------------------------------------------------------- /doc/planning/FancyZonesBacklog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/planning/FancyZonesBacklog.md -------------------------------------------------------------------------------- /doc/planning/PowerToysBacklog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/planning/PowerToysBacklog.md -------------------------------------------------------------------------------- /doc/planning/ShortcutGuideBacklog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/planning/ShortcutGuideBacklog.md -------------------------------------------------------------------------------- /doc/specs/FancyZones-DCR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/specs/FancyZones-DCR.md -------------------------------------------------------------------------------- /doc/specs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/specs/readme.md -------------------------------------------------------------------------------- /doc/unofficialInstallMethods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/doc/unofficialInstallMethods.md -------------------------------------------------------------------------------- /installer/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/License.rtf -------------------------------------------------------------------------------- /installer/MSIX/Images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/MSIX/Images/logo.png -------------------------------------------------------------------------------- /installer/MSIX/Images/logo150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/MSIX/Images/logo150.png -------------------------------------------------------------------------------- /installer/MSIX/Images/logo44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/MSIX/Images/logo44.png -------------------------------------------------------------------------------- /installer/MSIX/PackagingLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/MSIX/PackagingLayout.xml -------------------------------------------------------------------------------- /installer/MSIX/appxmanifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/MSIX/appxmanifest.xml -------------------------------------------------------------------------------- /installer/MSIX/build_msix.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/MSIX/build_msix.ps1 -------------------------------------------------------------------------------- /installer/MSIX/build_msix_cdpx.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/MSIX/build_msix_cdpx.cmd -------------------------------------------------------------------------------- /installer/MSIX/generate_self_sign_cert.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/MSIX/generate_self_sign_cert.ps1 -------------------------------------------------------------------------------- /installer/MSIX/install_msix.ps1: -------------------------------------------------------------------------------- 1 | Add-AppxPackage .\bin\PowerToys.msixbundle 2 | -------------------------------------------------------------------------------- /installer/MSIX/registry.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/MSIX/registry.dat -------------------------------------------------------------------------------- /installer/MSIX/registry.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/MSIX/registry.reg -------------------------------------------------------------------------------- /installer/MSIX/reinstall_msix.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/MSIX/reinstall_msix.ps1 -------------------------------------------------------------------------------- /installer/MSIX/sign_msix.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/MSIX/sign_msix.ps1 -------------------------------------------------------------------------------- /installer/MSIX/uninstall_msix.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/MSIX/uninstall_msix.ps1 -------------------------------------------------------------------------------- /installer/MSIX/update_appxmanifest_version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/MSIX/update_appxmanifest_version.ps1 -------------------------------------------------------------------------------- /installer/PowerToysBootstrapper/bootstrapper/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" -------------------------------------------------------------------------------- /installer/PowerToysBootstrapper/bootstrapper/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/PowerToysBootstrapper/bootstrapper/pch.h -------------------------------------------------------------------------------- /installer/PowerToysSetup.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/PowerToysSetup.sln -------------------------------------------------------------------------------- /installer/PowerToysSetup/Images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/PowerToysSetup/Images/banner.png -------------------------------------------------------------------------------- /installer/PowerToysSetup/Images/dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/PowerToysSetup/Images/dialog.png -------------------------------------------------------------------------------- /installer/PowerToysSetup/PowerToysSetup.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/PowerToysSetup/PowerToysSetup.wixproj -------------------------------------------------------------------------------- /installer/PowerToysSetup/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/PowerToysSetup/Product.wxs -------------------------------------------------------------------------------- /installer/PowerToysSetup/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/PowerToysSetup/packages.config -------------------------------------------------------------------------------- /installer/PowerToysSetup/publish.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/PowerToysSetup/publish.cmd -------------------------------------------------------------------------------- /installer/PowerToysSetupCustomActions/CustomAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/PowerToysSetupCustomActions/CustomAction.cpp -------------------------------------------------------------------------------- /installer/PowerToysSetupCustomActions/CustomAction.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/PowerToysSetupCustomActions/CustomAction.def -------------------------------------------------------------------------------- /installer/PowerToysSetupCustomActions/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/PowerToysSetupCustomActions/packages.config -------------------------------------------------------------------------------- /installer/PowerToysSetupCustomActions/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/PowerToysSetupCustomActions/stdafx.cpp -------------------------------------------------------------------------------- /installer/PowerToysSetupCustomActions/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/PowerToysSetupCustomActions/stdafx.h -------------------------------------------------------------------------------- /installer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/README.md -------------------------------------------------------------------------------- /installer/VCRuntime/concrt140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/VCRuntime/concrt140.dll -------------------------------------------------------------------------------- /installer/VCRuntime/msvcp140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/VCRuntime/msvcp140.dll -------------------------------------------------------------------------------- /installer/VCRuntime/msvcp140_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/VCRuntime/msvcp140_1.dll -------------------------------------------------------------------------------- /installer/VCRuntime/msvcp140_2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/VCRuntime/msvcp140_2.dll -------------------------------------------------------------------------------- /installer/VCRuntime/msvcp140_codecvt_ids.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/VCRuntime/msvcp140_codecvt_ids.dll -------------------------------------------------------------------------------- /installer/VCRuntime/vccorlib140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/VCRuntime/vccorlib140.dll -------------------------------------------------------------------------------- /installer/VCRuntime/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/VCRuntime/vcruntime140.dll -------------------------------------------------------------------------------- /installer/VCRuntime/vcruntime140_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/installer/VCRuntime/vcruntime140_1.dll -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/nuget.config -------------------------------------------------------------------------------- /src/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/.clang-format -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/ActionRunner/LocProject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/ActionRunner/LocProject.json -------------------------------------------------------------------------------- /src/ActionRunner/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/ActionRunner/Resources.resx -------------------------------------------------------------------------------- /src/ActionRunner/actionRunner.base.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/ActionRunner/actionRunner.base.rc -------------------------------------------------------------------------------- /src/ActionRunner/actionRunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/ActionRunner/actionRunner.cpp -------------------------------------------------------------------------------- /src/ActionRunner/actionRunner.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/ActionRunner/actionRunner.vcxproj -------------------------------------------------------------------------------- /src/ActionRunner/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/ActionRunner/packages.config -------------------------------------------------------------------------------- /src/ActionRunner/resource.base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/ActionRunner/resource.base.h -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/README.md -------------------------------------------------------------------------------- /src/Update/LocProject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/Update/LocProject.json -------------------------------------------------------------------------------- /src/Update/PowerToys.Update.base.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/Update/PowerToys.Update.base.rc -------------------------------------------------------------------------------- /src/Update/PowerToys.Update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/Update/PowerToys.Update.cpp -------------------------------------------------------------------------------- /src/Update/PowerToys.Update.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/Update/PowerToys.Update.vcxproj -------------------------------------------------------------------------------- /src/Update/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/Update/Resources.resx -------------------------------------------------------------------------------- /src/Update/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/Update/packages.config -------------------------------------------------------------------------------- /src/Update/resource.base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/Update/resource.base.h -------------------------------------------------------------------------------- /src/Version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/Version.props -------------------------------------------------------------------------------- /src/codeAnalysis/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/codeAnalysis/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/codeAnalysis/Rules.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/codeAnalysis/Rules.ruleset -------------------------------------------------------------------------------- /src/codeAnalysis/StyleCop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/codeAnalysis/StyleCop.json -------------------------------------------------------------------------------- /src/codeAnalysis/format_sources.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/codeAnalysis/format_sources.ps1 -------------------------------------------------------------------------------- /src/common/COMUtils/COMUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/COMUtils/COMUtils.cpp -------------------------------------------------------------------------------- /src/common/COMUtils/COMUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/COMUtils/COMUtils.h -------------------------------------------------------------------------------- /src/common/COMUtils/COMUtils.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/COMUtils/COMUtils.vcxproj -------------------------------------------------------------------------------- /src/common/COMUtils/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/COMUtils/packages.config -------------------------------------------------------------------------------- /src/common/Display/Display.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/Display/Display.vcxproj -------------------------------------------------------------------------------- /src/common/Display/dpi_aware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/Display/dpi_aware.cpp -------------------------------------------------------------------------------- /src/common/Display/dpi_aware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/Display/dpi_aware.h -------------------------------------------------------------------------------- /src/common/Display/monitors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/Display/monitors.cpp -------------------------------------------------------------------------------- /src/common/Display/monitors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/Display/monitors.h -------------------------------------------------------------------------------- /src/common/ManagedCommon/ManagedCommon.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/ManagedCommon/ManagedCommon.csproj -------------------------------------------------------------------------------- /src/common/ManagedCommon/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/ManagedCommon/NativeMethods.cs -------------------------------------------------------------------------------- /src/common/ManagedCommon/RunnerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/ManagedCommon/RunnerHelper.cs -------------------------------------------------------------------------------- /src/common/ManagedCommon/StartupPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/ManagedCommon/StartupPosition.cs -------------------------------------------------------------------------------- /src/common/ManagedCommon/Theme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/ManagedCommon/Theme.cs -------------------------------------------------------------------------------- /src/common/ManagedTelemetry/Telemetry/Events/IEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/ManagedTelemetry/Telemetry/Events/IEvent.cs -------------------------------------------------------------------------------- /src/common/SettingsAPI/FileWatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/SettingsAPI/FileWatcher.cpp -------------------------------------------------------------------------------- /src/common/SettingsAPI/FileWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/SettingsAPI/FileWatcher.h -------------------------------------------------------------------------------- /src/common/SettingsAPI/SetttingsAPI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/SettingsAPI/SetttingsAPI.vcxproj -------------------------------------------------------------------------------- /src/common/SettingsAPI/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" -------------------------------------------------------------------------------- /src/common/SettingsAPI/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/SettingsAPI/pch.h -------------------------------------------------------------------------------- /src/common/SettingsAPI/settings_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/SettingsAPI/settings_helpers.cpp -------------------------------------------------------------------------------- /src/common/SettingsAPI/settings_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/SettingsAPI/settings_helpers.h -------------------------------------------------------------------------------- /src/common/SettingsAPI/settings_objects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/SettingsAPI/settings_objects.cpp -------------------------------------------------------------------------------- /src/common/SettingsAPI/settings_objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/SettingsAPI/settings_objects.h -------------------------------------------------------------------------------- /src/common/Telemetry/PowerToys.wprp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/Telemetry/PowerToys.wprp -------------------------------------------------------------------------------- /src/common/Telemetry/ProjectTelemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/Telemetry/ProjectTelemetry.h -------------------------------------------------------------------------------- /src/common/Telemetry/TelemetryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/Telemetry/TelemetryBase.cs -------------------------------------------------------------------------------- /src/common/Telemetry/TraceLoggingDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/Telemetry/TraceLoggingDefines.h -------------------------------------------------------------------------------- /src/common/Telemetry/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/Telemetry/readme.md -------------------------------------------------------------------------------- /src/common/Themes/Themes.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/Themes/Themes.vcxproj -------------------------------------------------------------------------------- /src/common/Themes/icon_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/Themes/icon_helpers.cpp -------------------------------------------------------------------------------- /src/common/Themes/icon_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/Themes/icon_helpers.h -------------------------------------------------------------------------------- /src/common/Themes/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/Themes/packages.config -------------------------------------------------------------------------------- /src/common/Themes/windows_colors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/Themes/windows_colors.cpp -------------------------------------------------------------------------------- /src/common/Themes/windows_colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/Themes/windows_colors.h -------------------------------------------------------------------------------- /src/common/UnitTests-CommonLib/Settings.Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/UnitTests-CommonLib/Settings.Tests.cpp -------------------------------------------------------------------------------- /src/common/UnitTests-CommonLib/UnitTests-CommonLib.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/UnitTests-CommonLib/UnitTests-CommonLib.rc -------------------------------------------------------------------------------- /src/common/UnitTests-CommonLib/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/UnitTests-CommonLib/packages.config -------------------------------------------------------------------------------- /src/common/UnitTests-CommonLib/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/UnitTests-CommonLib/pch.cpp -------------------------------------------------------------------------------- /src/common/UnitTests-CommonLib/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/UnitTests-CommonLib/pch.h -------------------------------------------------------------------------------- /src/common/UnitTests-CommonLib/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/UnitTests-CommonLib/resource.h -------------------------------------------------------------------------------- /src/common/debug_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/debug_control.h -------------------------------------------------------------------------------- /src/common/hooks/LowlevelKeyboardEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/hooks/LowlevelKeyboardEvent.h -------------------------------------------------------------------------------- /src/common/hooks/WinHookEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/hooks/WinHookEvent.h -------------------------------------------------------------------------------- /src/common/interop/HotkeyManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/interop/HotkeyManager.cpp -------------------------------------------------------------------------------- /src/common/interop/HotkeyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/interop/HotkeyManager.h -------------------------------------------------------------------------------- /src/common/interop/KeyboardHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/interop/KeyboardHook.cpp -------------------------------------------------------------------------------- /src/common/interop/KeyboardHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/interop/KeyboardHook.h -------------------------------------------------------------------------------- /src/common/interop/PowerToysInterop.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/interop/PowerToysInterop.vcxproj -------------------------------------------------------------------------------- /src/common/interop/PowerToysInterop.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/interop/PowerToysInterop.vcxproj.filters -------------------------------------------------------------------------------- /src/common/interop/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/interop/Resource.h -------------------------------------------------------------------------------- /src/common/interop/async_message_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/interop/async_message_queue.h -------------------------------------------------------------------------------- /src/common/interop/interop-tests/InteropTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/interop/interop-tests/InteropTests.cs -------------------------------------------------------------------------------- /src/common/interop/interop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/interop/interop.cpp -------------------------------------------------------------------------------- /src/common/interop/interop.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/interop/interop.rc -------------------------------------------------------------------------------- /src/common/interop/keyboard_layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/interop/keyboard_layout.cpp -------------------------------------------------------------------------------- /src/common/interop/keyboard_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/interop/keyboard_layout.h -------------------------------------------------------------------------------- /src/common/interop/keyboard_layout_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/interop/keyboard_layout_impl.h -------------------------------------------------------------------------------- /src/common/interop/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/interop/packages.config -------------------------------------------------------------------------------- /src/common/interop/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/interop/pch.h -------------------------------------------------------------------------------- /src/common/interop/shared_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/interop/shared_constants.h -------------------------------------------------------------------------------- /src/common/interop/two_way_pipe_message_ipc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/interop/two_way_pipe_message_ipc.cpp -------------------------------------------------------------------------------- /src/common/interop/two_way_pipe_message_ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/interop/two_way_pipe_message_ipc.h -------------------------------------------------------------------------------- /src/common/interop/two_way_pipe_message_ipc_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/interop/two_way_pipe_message_ipc_impl.h -------------------------------------------------------------------------------- /src/common/logger/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/logger/framework.h -------------------------------------------------------------------------------- /src/common/logger/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/logger/logger.cpp -------------------------------------------------------------------------------- /src/common/logger/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/logger/logger.h -------------------------------------------------------------------------------- /src/common/logger/logger.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/logger/logger.vcxproj -------------------------------------------------------------------------------- /src/common/logger/logger.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/logger/logger.vcxproj.filters -------------------------------------------------------------------------------- /src/common/logger/logger_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/logger/logger_settings.cpp -------------------------------------------------------------------------------- /src/common/logger/logger_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/logger/logger_settings.h -------------------------------------------------------------------------------- /src/common/logger/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/logger/packages.config -------------------------------------------------------------------------------- /src/common/logger/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/logger/pch.cpp -------------------------------------------------------------------------------- /src/common/logger/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/logger/pch.h -------------------------------------------------------------------------------- /src/common/monitor_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/monitor_utils.h -------------------------------------------------------------------------------- /src/common/notifications/BackgroundActivator/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/common/notifications/BackgroundActivator/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/notifications/BackgroundActivator/pch.h -------------------------------------------------------------------------------- /src/common/notifications/BackgroundActivatorDLL/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/notifications/BackgroundActivatorDLL/pch.h -------------------------------------------------------------------------------- /src/common/notifications/dont_show_again.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/notifications/dont_show_again.cpp -------------------------------------------------------------------------------- /src/common/notifications/dont_show_again.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/notifications/dont_show_again.h -------------------------------------------------------------------------------- /src/common/notifications/notifications.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/notifications/notifications.cpp -------------------------------------------------------------------------------- /src/common/notifications/notifications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/notifications/notifications.h -------------------------------------------------------------------------------- /src/common/notifications/notifications.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/notifications/notifications.vcxproj -------------------------------------------------------------------------------- /src/common/notifications/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/notifications/packages.config -------------------------------------------------------------------------------- /src/common/notifications/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" -------------------------------------------------------------------------------- /src/common/notifications/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/notifications/pch.h -------------------------------------------------------------------------------- /src/common/updating/installer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/updating/installer.cpp -------------------------------------------------------------------------------- /src/common/updating/installer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/updating/installer.h -------------------------------------------------------------------------------- /src/common/updating/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/updating/packages.config -------------------------------------------------------------------------------- /src/common/updating/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/common/updating/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/updating/pch.h -------------------------------------------------------------------------------- /src/common/updating/updateState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/updating/updateState.cpp -------------------------------------------------------------------------------- /src/common/updating/updateState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/updating/updateState.h -------------------------------------------------------------------------------- /src/common/updating/updating.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/updating/updating.cpp -------------------------------------------------------------------------------- /src/common/updating/updating.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/updating/updating.h -------------------------------------------------------------------------------- /src/common/updating/updating.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/updating/updating.vcxproj -------------------------------------------------------------------------------- /src/common/updating/updating.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/updating/updating.vcxproj.filters -------------------------------------------------------------------------------- /src/common/utils/EventLocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/utils/EventLocker.h -------------------------------------------------------------------------------- /src/common/utils/EventWaiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/utils/EventWaiter.h -------------------------------------------------------------------------------- /src/common/utils/HttpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/utils/HttpClient.h -------------------------------------------------------------------------------- /src/common/utils/MsiUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/utils/MsiUtils.h -------------------------------------------------------------------------------- /src/common/utils/ProcessWaiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/utils/ProcessWaiter.h -------------------------------------------------------------------------------- /src/common/utils/UnhandledExceptionHandler_x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/utils/UnhandledExceptionHandler_x64.h -------------------------------------------------------------------------------- /src/common/utils/appMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/utils/appMutex.h -------------------------------------------------------------------------------- /src/common/utils/com_object_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/utils/com_object_factory.h -------------------------------------------------------------------------------- /src/common/utils/elevation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/utils/elevation.h -------------------------------------------------------------------------------- /src/common/utils/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/utils/exec.h -------------------------------------------------------------------------------- /src/common/utils/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/utils/json.h -------------------------------------------------------------------------------- /src/common/utils/logger_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/utils/logger_helper.h -------------------------------------------------------------------------------- /src/common/utils/os-detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/utils/os-detect.h -------------------------------------------------------------------------------- /src/common/utils/processApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/utils/processApi.h -------------------------------------------------------------------------------- /src/common/utils/process_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/utils/process_path.h -------------------------------------------------------------------------------- /src/common/utils/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/utils/resources.h -------------------------------------------------------------------------------- /src/common/utils/string_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/utils/string_utils.h -------------------------------------------------------------------------------- /src/common/utils/timeutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/utils/timeutil.h -------------------------------------------------------------------------------- /src/common/utils/winapi_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/utils/winapi_error.h -------------------------------------------------------------------------------- /src/common/utils/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/utils/window.h -------------------------------------------------------------------------------- /src/common/version/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/version/helper.cpp -------------------------------------------------------------------------------- /src/common/version/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/version/helper.h -------------------------------------------------------------------------------- /src/common/version/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/version/version.cpp -------------------------------------------------------------------------------- /src/common/version/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/version/version.h -------------------------------------------------------------------------------- /src/common/version/version.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/common/version/version.vcxproj -------------------------------------------------------------------------------- /src/logging/logging.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/logging/logging.vcxproj -------------------------------------------------------------------------------- /src/logging/logging.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/logging/logging.vcxproj.filters -------------------------------------------------------------------------------- /src/modules/ShortcutGuide/ShortcutGuide/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/ShortcutGuide/ShortcutGuide/Resources.resx -------------------------------------------------------------------------------- /src/modules/ShortcutGuide/ShortcutGuide/animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/ShortcutGuide/ShortcutGuide/animation.cpp -------------------------------------------------------------------------------- /src/modules/ShortcutGuide/ShortcutGuide/animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/ShortcutGuide/ShortcutGuide/animation.h -------------------------------------------------------------------------------- /src/modules/ShortcutGuide/ShortcutGuide/d2d_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/ShortcutGuide/ShortcutGuide/d2d_svg.cpp -------------------------------------------------------------------------------- /src/modules/ShortcutGuide/ShortcutGuide/d2d_svg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/ShortcutGuide/ShortcutGuide/d2d_svg.h -------------------------------------------------------------------------------- /src/modules/ShortcutGuide/ShortcutGuide/d2d_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/ShortcutGuide/ShortcutGuide/d2d_text.cpp -------------------------------------------------------------------------------- /src/modules/ShortcutGuide/ShortcutGuide/d2d_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/ShortcutGuide/ShortcutGuide/d2d_text.h -------------------------------------------------------------------------------- /src/modules/ShortcutGuide/ShortcutGuide/d2d_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/ShortcutGuide/ShortcutGuide/d2d_window.cpp -------------------------------------------------------------------------------- /src/modules/ShortcutGuide/ShortcutGuide/d2d_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/ShortcutGuide/ShortcutGuide/d2d_window.h -------------------------------------------------------------------------------- /src/modules/ShortcutGuide/ShortcutGuide/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/ShortcutGuide/ShortcutGuide/main.cpp -------------------------------------------------------------------------------- /src/modules/ShortcutGuide/ShortcutGuide/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/modules/ShortcutGuide/ShortcutGuide/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/ShortcutGuide/ShortcutGuide/pch.h -------------------------------------------------------------------------------- /src/modules/ShortcutGuide/ShortcutGuide/start_visible.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | bool is_start_visible(); 4 | -------------------------------------------------------------------------------- /src/modules/ShortcutGuide/ShortcutGuide/svgs/0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/ShortcutGuide/ShortcutGuide/svgs/0.svg -------------------------------------------------------------------------------- /src/modules/ShortcutGuide/ShortcutGuide/svgs/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/ShortcutGuide/ShortcutGuide/svgs/1.svg -------------------------------------------------------------------------------- /src/modules/ShortcutGuide/ShortcutGuide/svgs/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/ShortcutGuide/ShortcutGuide/svgs/2.svg -------------------------------------------------------------------------------- /src/modules/ShortcutGuide/ShortcutGuide/svgs/3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/ShortcutGuide/ShortcutGuide/svgs/3.svg -------------------------------------------------------------------------------- /src/modules/ShortcutGuide/ShortcutGuide/svgs/4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/ShortcutGuide/ShortcutGuide/svgs/4.svg -------------------------------------------------------------------------------- /src/modules/ShortcutGuide/ShortcutGuide/svgs/5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/ShortcutGuide/ShortcutGuide/svgs/5.svg -------------------------------------------------------------------------------- /src/modules/ShortcutGuide/ShortcutGuide/svgs/6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/ShortcutGuide/ShortcutGuide/svgs/6.svg -------------------------------------------------------------------------------- /src/modules/ShortcutGuide/ShortcutGuide/svgs/7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/ShortcutGuide/ShortcutGuide/svgs/7.svg -------------------------------------------------------------------------------- /src/modules/ShortcutGuide/ShortcutGuide/svgs/8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/ShortcutGuide/ShortcutGuide/svgs/8.svg -------------------------------------------------------------------------------- /src/modules/ShortcutGuide/ShortcutGuide/svgs/9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/ShortcutGuide/ShortcutGuide/svgs/9.svg -------------------------------------------------------------------------------- /src/modules/ShortcutGuide/ShortcutGuide/target_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/ShortcutGuide/ShortcutGuide/target_state.h -------------------------------------------------------------------------------- /src/modules/ShortcutGuide/ShortcutGuide/trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/ShortcutGuide/ShortcutGuide/trace.cpp -------------------------------------------------------------------------------- /src/modules/ShortcutGuide/ShortcutGuide/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/ShortcutGuide/ShortcutGuide/trace.h -------------------------------------------------------------------------------- /src/modules/ShortcutGuide/ShortcutGuideModuleInterface/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/modules/awake/Awake/Awake.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/awake/Awake/Awake.csproj -------------------------------------------------------------------------------- /src/modules/awake/Awake/Core/APIHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/awake/Awake/Core/APIHelper.cs -------------------------------------------------------------------------------- /src/modules/awake/Awake/Core/TrayHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/awake/Awake/Core/TrayHelper.cs -------------------------------------------------------------------------------- /src/modules/awake/Awake/Images/Awake.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/awake/Awake/Images/Awake.ico -------------------------------------------------------------------------------- /src/modules/awake/Awake/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/awake/Awake/NLog.config -------------------------------------------------------------------------------- /src/modules/awake/Awake/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/awake/Awake/Program.cs -------------------------------------------------------------------------------- /src/modules/awake/AwakeModuleInterface/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/awake/AwakeModuleInterface/dllmain.cpp -------------------------------------------------------------------------------- /src/modules/awake/AwakeModuleInterface/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/awake/AwakeModuleInterface/packages.config -------------------------------------------------------------------------------- /src/modules/awake/AwakeModuleInterface/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" -------------------------------------------------------------------------------- /src/modules/awake/AwakeModuleInterface/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/awake/AwakeModuleInterface/pch.h -------------------------------------------------------------------------------- /src/modules/awake/AwakeModuleInterface/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/awake/AwakeModuleInterface/resource.h -------------------------------------------------------------------------------- /src/modules/awake/AwakeModuleInterface/trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/awake/AwakeModuleInterface/trace.cpp -------------------------------------------------------------------------------- /src/modules/awake/AwakeModuleInterface/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/awake/AwakeModuleInterface/trace.h -------------------------------------------------------------------------------- /src/modules/colorPicker/ColorPicker/LocProject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/colorPicker/ColorPicker/LocProject.json -------------------------------------------------------------------------------- /src/modules/colorPicker/ColorPicker/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/colorPicker/ColorPicker/Resources.resx -------------------------------------------------------------------------------- /src/modules/colorPicker/ColorPicker/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/colorPicker/ColorPicker/dllmain.cpp -------------------------------------------------------------------------------- /src/modules/colorPicker/ColorPicker/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/colorPicker/ColorPicker/packages.config -------------------------------------------------------------------------------- /src/modules/colorPicker/ColorPicker/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | 3 | -------------------------------------------------------------------------------- /src/modules/colorPicker/ColorPicker/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/colorPicker/ColorPicker/pch.h -------------------------------------------------------------------------------- /src/modules/colorPicker/ColorPicker/resource.base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/colorPicker/ColorPicker/resource.base.h -------------------------------------------------------------------------------- /src/modules/colorPicker/ColorPicker/trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/colorPicker/ColorPicker/trace.cpp -------------------------------------------------------------------------------- /src/modules/colorPicker/ColorPicker/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/colorPicker/ColorPicker/trace.h -------------------------------------------------------------------------------- /src/modules/colorPicker/ColorPickerUI/App.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/colorPicker/ColorPickerUI/App.manifest -------------------------------------------------------------------------------- /src/modules/colorPicker/ColorPickerUI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/colorPicker/ColorPickerUI/App.xaml -------------------------------------------------------------------------------- /src/modules/colorPicker/ColorPickerUI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/colorPicker/ColorPickerUI/App.xaml.cs -------------------------------------------------------------------------------- /src/modules/colorPicker/ColorPickerUI/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/colorPicker/ColorPickerUI/Bootstrapper.cs -------------------------------------------------------------------------------- /src/modules/colorPicker/ColorPickerUI/LocProject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/colorPicker/ColorPickerUI/LocProject.json -------------------------------------------------------------------------------- /src/modules/colorPicker/ColorPickerUI/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/colorPicker/ColorPickerUI/MainWindow.xaml -------------------------------------------------------------------------------- /src/modules/colorPicker/ColorPickerUI/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/colorPicker/ColorPickerUI/NativeMethods.cs -------------------------------------------------------------------------------- /src/modules/colorPicker/ColorPickerUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/colorPicker/ColorPickerUI/Program.cs -------------------------------------------------------------------------------- /src/modules/colorPicker/ColorPickerUI/Themes/Dark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/colorPicker/ColorPickerUI/Themes/Dark.xaml -------------------------------------------------------------------------------- /src/modules/colorPicker/ColorPickerUI/ZoomWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/colorPicker/ColorPickerUI/ZoomWindow.xaml -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZones/FancyZones.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZones/FancyZones.vcxproj -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZones/FancyZonesApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZones/FancyZonesApp.cpp -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZones/FancyZonesApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZones/FancyZonesApp.h -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZones/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZones/main.cpp -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZones/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZones/packages.config -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZones/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZones/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZones/pch.h -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/CallTracer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/CallTracer.cpp -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/CallTracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/CallTracer.h -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/FancyZones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/FancyZones.cpp -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/FancyZones.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/FancyZones.h -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/FancyZonesData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/FancyZonesData.h -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/GenericKeyHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/GenericKeyHook.h -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/JsonHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/JsonHelpers.cpp -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/JsonHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/JsonHelpers.h -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/KeyState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/KeyState.h -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/LocProject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/LocProject.json -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/MonitorUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/MonitorUtils.cpp -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/MonitorUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/MonitorUtils.h -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/Resources.resx -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/Settings.cpp -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/Settings.h -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/VirtualDesktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/VirtualDesktop.h -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/WorkArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/WorkArea.cpp -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/WorkArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/WorkArea.h -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/Zone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/Zone.cpp -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/Zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/Zone.h -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/ZoneColors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/ZoneColors.h -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/ZoneSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/ZoneSet.cpp -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/ZoneSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/ZoneSet.h -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/icon.ico -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/packages.config -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/pch.cpp -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/pch.h -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/resource.base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/resource.base.h -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/trace.cpp -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/trace.h -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/util.cpp -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesLib/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesLib/util.h -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesModuleInterface/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesModuleInterface/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesModuleInterface/pch.h -------------------------------------------------------------------------------- /src/modules/fancyzones/FancyZonesTests/UnitTests/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/FancyZonesTests/UnitTests/pch.h -------------------------------------------------------------------------------- /src/modules/fancyzones/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/README.md -------------------------------------------------------------------------------- /src/modules/fancyzones/editor/FancyZonesEditor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/fancyzones/editor/FancyZonesEditor.sln -------------------------------------------------------------------------------- /src/modules/imageresizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/README.md -------------------------------------------------------------------------------- /src/modules/imageresizer/dll/ContextMenuHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/dll/ContextMenuHandler.cpp -------------------------------------------------------------------------------- /src/modules/imageresizer/dll/ContextMenuHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/dll/ContextMenuHandler.h -------------------------------------------------------------------------------- /src/modules/imageresizer/dll/ContextMenuHandler.rgs: -------------------------------------------------------------------------------- 1 | HKCR 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /src/modules/imageresizer/dll/HDropIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/dll/HDropIterator.cpp -------------------------------------------------------------------------------- /src/modules/imageresizer/dll/HDropIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/dll/HDropIterator.h -------------------------------------------------------------------------------- /src/modules/imageresizer/dll/ImageResizerExt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/dll/ImageResizerExt.cpp -------------------------------------------------------------------------------- /src/modules/imageresizer/dll/ImageResizerExt.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/dll/ImageResizerExt.def -------------------------------------------------------------------------------- /src/modules/imageresizer/dll/ImageResizerExt.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/dll/ImageResizerExt.idl -------------------------------------------------------------------------------- /src/modules/imageresizer/dll/ImageResizerExt.rgs: -------------------------------------------------------------------------------- 1 | HKCR 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /src/modules/imageresizer/dll/LocProject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/dll/LocProject.json -------------------------------------------------------------------------------- /src/modules/imageresizer/dll/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/dll/Resources.resx -------------------------------------------------------------------------------- /src/modules/imageresizer/dll/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/dll/Settings.cpp -------------------------------------------------------------------------------- /src/modules/imageresizer/dll/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/dll/Settings.h -------------------------------------------------------------------------------- /src/modules/imageresizer/dll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/dll/dllmain.cpp -------------------------------------------------------------------------------- /src/modules/imageresizer/dll/dllmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/dll/dllmain.h -------------------------------------------------------------------------------- /src/modules/imageresizer/dll/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/dll/packages.config -------------------------------------------------------------------------------- /src/modules/imageresizer/dll/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/modules/imageresizer/dll/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/dll/pch.h -------------------------------------------------------------------------------- /src/modules/imageresizer/dll/resource.base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/dll/resource.base.h -------------------------------------------------------------------------------- /src/modules/imageresizer/dll/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/dll/targetver.h -------------------------------------------------------------------------------- /src/modules/imageresizer/dll/trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/dll/trace.cpp -------------------------------------------------------------------------------- /src/modules/imageresizer/dll/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/dll/trace.h -------------------------------------------------------------------------------- /src/modules/imageresizer/tests/Test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/tests/Test.gif -------------------------------------------------------------------------------- /src/modules/imageresizer/tests/Test.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/tests/Test.ico -------------------------------------------------------------------------------- /src/modules/imageresizer/tests/Test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/tests/Test.jpg -------------------------------------------------------------------------------- /src/modules/imageresizer/tests/Test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/tests/Test.png -------------------------------------------------------------------------------- /src/modules/imageresizer/tests/Test/AssertEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/tests/Test/AssertEx.cs -------------------------------------------------------------------------------- /src/modules/imageresizer/tests/TestPortrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/tests/TestPortrait.png -------------------------------------------------------------------------------- /src/modules/imageresizer/ui/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/ui/App.xaml -------------------------------------------------------------------------------- /src/modules/imageresizer/ui/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/ui/App.xaml.cs -------------------------------------------------------------------------------- /src/modules/imageresizer/ui/Helpers/Observable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/ui/Helpers/Observable.cs -------------------------------------------------------------------------------- /src/modules/imageresizer/ui/Helpers/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/ui/Helpers/RelayCommand.cs -------------------------------------------------------------------------------- /src/modules/imageresizer/ui/ImageResizerUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/ui/ImageResizerUI.csproj -------------------------------------------------------------------------------- /src/modules/imageresizer/ui/LocProject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/ui/LocProject.json -------------------------------------------------------------------------------- /src/modules/imageresizer/ui/Models/CustomSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/ui/Models/CustomSize.cs -------------------------------------------------------------------------------- /src/modules/imageresizer/ui/Models/ResizeBatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/ui/Models/ResizeBatch.cs -------------------------------------------------------------------------------- /src/modules/imageresizer/ui/Models/ResizeError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/ui/Models/ResizeError.cs -------------------------------------------------------------------------------- /src/modules/imageresizer/ui/Models/ResizeFit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/ui/Models/ResizeFit.cs -------------------------------------------------------------------------------- /src/modules/imageresizer/ui/Models/ResizeSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/ui/Models/ResizeSize.cs -------------------------------------------------------------------------------- /src/modules/imageresizer/ui/Models/ResizeUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/ui/Models/ResizeUnit.cs -------------------------------------------------------------------------------- /src/modules/imageresizer/ui/Properties/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/ui/Properties/Settings.cs -------------------------------------------------------------------------------- /src/modules/imageresizer/ui/Themes/Dark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/ui/Themes/Dark.xaml -------------------------------------------------------------------------------- /src/modules/imageresizer/ui/Themes/Light.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/ui/Themes/Light.xaml -------------------------------------------------------------------------------- /src/modules/imageresizer/ui/Views/IMainView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/ui/Views/IMainView.cs -------------------------------------------------------------------------------- /src/modules/imageresizer/ui/Views/InputPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/ui/Views/InputPage.xaml -------------------------------------------------------------------------------- /src/modules/imageresizer/ui/Views/InputPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/ui/Views/InputPage.xaml.cs -------------------------------------------------------------------------------- /src/modules/imageresizer/ui/Views/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/ui/Views/MainWindow.xaml -------------------------------------------------------------------------------- /src/modules/imageresizer/ui/Views/ProgressPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/ui/Views/ProgressPage.xaml -------------------------------------------------------------------------------- /src/modules/imageresizer/ui/Views/ResultsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/imageresizer/ui/Views/ResultsPage.xaml -------------------------------------------------------------------------------- /src/modules/interface/powertoy_module_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/interface/powertoy_module_interface.h -------------------------------------------------------------------------------- /src/modules/keyboardmanager/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/keyboardmanager/Directory.Build.targets -------------------------------------------------------------------------------- /src/modules/keyboardmanager/KeyboardManagerEditor/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" -------------------------------------------------------------------------------- /src/modules/keyboardmanager/KeyboardManagerEditorTest/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/modules/keyboardmanager/KeyboardManagerEngine/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/modules/keyboardmanager/KeyboardManagerEngineLibrary/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/modules/keyboardmanager/KeyboardManagerEngineTest/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/modules/keyboardmanager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/keyboardmanager/README.md -------------------------------------------------------------------------------- /src/modules/keyboardmanager/common/Helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/keyboardmanager/common/Helpers.cpp -------------------------------------------------------------------------------- /src/modules/keyboardmanager/common/Helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/keyboardmanager/common/Helpers.h -------------------------------------------------------------------------------- /src/modules/keyboardmanager/common/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/keyboardmanager/common/Input.h -------------------------------------------------------------------------------- /src/modules/keyboardmanager/common/InputInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/keyboardmanager/common/InputInterface.h -------------------------------------------------------------------------------- /src/modules/keyboardmanager/common/ModifierKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/keyboardmanager/common/ModifierKey.h -------------------------------------------------------------------------------- /src/modules/keyboardmanager/common/RemapShortcut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/keyboardmanager/common/RemapShortcut.h -------------------------------------------------------------------------------- /src/modules/keyboardmanager/common/Shortcut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/keyboardmanager/common/Shortcut.cpp -------------------------------------------------------------------------------- /src/modules/keyboardmanager/common/Shortcut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/keyboardmanager/common/Shortcut.h -------------------------------------------------------------------------------- /src/modules/keyboardmanager/common/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/keyboardmanager/common/packages.config -------------------------------------------------------------------------------- /src/modules/keyboardmanager/common/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" -------------------------------------------------------------------------------- /src/modules/keyboardmanager/common/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/keyboardmanager/common/pch.h -------------------------------------------------------------------------------- /src/modules/keyboardmanager/dll/LocProject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/keyboardmanager/dll/LocProject.json -------------------------------------------------------------------------------- /src/modules/keyboardmanager/dll/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/keyboardmanager/dll/Resources.resx -------------------------------------------------------------------------------- /src/modules/keyboardmanager/dll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/keyboardmanager/dll/dllmain.cpp -------------------------------------------------------------------------------- /src/modules/keyboardmanager/dll/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/keyboardmanager/dll/packages.config -------------------------------------------------------------------------------- /src/modules/keyboardmanager/dll/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/modules/keyboardmanager/dll/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/keyboardmanager/dll/pch.h -------------------------------------------------------------------------------- /src/modules/keyboardmanager/dll/resource.base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/keyboardmanager/dll/resource.base.h -------------------------------------------------------------------------------- /src/modules/keyboardmanager/dll/trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/keyboardmanager/dll/trace.cpp -------------------------------------------------------------------------------- /src/modules/keyboardmanager/dll/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/keyboardmanager/dll/trace.h -------------------------------------------------------------------------------- /src/modules/launcher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/LICENSE -------------------------------------------------------------------------------- /src/modules/launcher/Microsoft.Launcher/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/Microsoft.Launcher/dllmain.cpp -------------------------------------------------------------------------------- /src/modules/launcher/Microsoft.Launcher/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/modules/launcher/Microsoft.Launcher/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/Microsoft.Launcher/pch.h -------------------------------------------------------------------------------- /src/modules/launcher/Microsoft.Launcher/trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/Microsoft.Launcher/trace.cpp -------------------------------------------------------------------------------- /src/modules/launcher/Microsoft.Launcher/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/Microsoft.Launcher/trace.h -------------------------------------------------------------------------------- /src/modules/launcher/PowerLauncher/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/PowerLauncher/App.xaml -------------------------------------------------------------------------------- /src/modules/launcher/PowerLauncher/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/PowerLauncher/App.xaml.cs -------------------------------------------------------------------------------- /src/modules/launcher/PowerLauncher/Images/EXE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/PowerLauncher/Images/EXE.png -------------------------------------------------------------------------------- /src/modules/launcher/PowerLauncher/Images/Link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/PowerLauncher/Images/Link.png -------------------------------------------------------------------------------- /src/modules/launcher/PowerLauncher/Images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/PowerLauncher/Images/close.png -------------------------------------------------------------------------------- /src/modules/launcher/PowerLauncher/Images/cmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/PowerLauncher/Images/cmd.png -------------------------------------------------------------------------------- /src/modules/launcher/PowerLauncher/Images/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/PowerLauncher/Images/color.png -------------------------------------------------------------------------------- /src/modules/launcher/PowerLauncher/Images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/PowerLauncher/Images/copy.png -------------------------------------------------------------------------------- /src/modules/launcher/PowerLauncher/Images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/PowerLauncher/Images/down.png -------------------------------------------------------------------------------- /src/modules/launcher/PowerLauncher/Images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/PowerLauncher/Images/file.png -------------------------------------------------------------------------------- /src/modules/launcher/PowerLauncher/Images/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/PowerLauncher/Images/find.png -------------------------------------------------------------------------------- /src/modules/launcher/PowerLauncher/Images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/PowerLauncher/Images/image.png -------------------------------------------------------------------------------- /src/modules/launcher/PowerLauncher/Images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/PowerLauncher/Images/lock.png -------------------------------------------------------------------------------- /src/modules/launcher/PowerLauncher/Images/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/PowerLauncher/Images/ok.png -------------------------------------------------------------------------------- /src/modules/launcher/PowerLauncher/Images/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/PowerLauncher/Images/open.png -------------------------------------------------------------------------------- /src/modules/launcher/PowerLauncher/Images/sleep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/PowerLauncher/Images/sleep.png -------------------------------------------------------------------------------- /src/modules/launcher/PowerLauncher/Images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/PowerLauncher/Images/up.png -------------------------------------------------------------------------------- /src/modules/launcher/PowerLauncher/LocProject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/PowerLauncher/LocProject.json -------------------------------------------------------------------------------- /src/modules/launcher/PowerLauncher/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/PowerLauncher/MainWindow.xaml -------------------------------------------------------------------------------- /src/modules/launcher/PowerLauncher/Plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/PowerLauncher/Plugin/README.md -------------------------------------------------------------------------------- /src/modules/launcher/PowerLauncher/ResultList.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/PowerLauncher/ResultList.xaml -------------------------------------------------------------------------------- /src/modules/launcher/PowerLauncher/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/PowerLauncher/Settings.cs -------------------------------------------------------------------------------- /src/modules/launcher/PowerLauncher/Themes/Dark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/PowerLauncher/Themes/Dark.xaml -------------------------------------------------------------------------------- /src/modules/launcher/PowerLauncher/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/PowerLauncher/app.manifest -------------------------------------------------------------------------------- /src/modules/launcher/PowerLauncher/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/PowerLauncher/app.png -------------------------------------------------------------------------------- /src/modules/launcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/README.md -------------------------------------------------------------------------------- /src/modules/launcher/Wox.Infrastructure/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/Wox.Infrastructure/Helper.cs -------------------------------------------------------------------------------- /src/modules/launcher/Wox.Plugin/ActionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/Wox.Plugin/ActionContext.cs -------------------------------------------------------------------------------- /src/modules/launcher/Wox.Plugin/AllowedLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/Wox.Plugin/AllowedLanguage.cs -------------------------------------------------------------------------------- /src/modules/launcher/Wox.Plugin/BaseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/Wox.Plugin/BaseModel.cs -------------------------------------------------------------------------------- /src/modules/launcher/Wox.Plugin/Constant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/Wox.Plugin/Constant.cs -------------------------------------------------------------------------------- /src/modules/launcher/Wox.Plugin/IContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/Wox.Plugin/IContextMenu.cs -------------------------------------------------------------------------------- /src/modules/launcher/Wox.Plugin/IPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/Wox.Plugin/IPlugin.cs -------------------------------------------------------------------------------- /src/modules/launcher/Wox.Plugin/IPublicAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/Wox.Plugin/IPublicAPI.cs -------------------------------------------------------------------------------- /src/modules/launcher/Wox.Plugin/ISettingProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/Wox.Plugin/ISettingProvider.cs -------------------------------------------------------------------------------- /src/modules/launcher/Wox.Plugin/LocProject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/Wox.Plugin/LocProject.json -------------------------------------------------------------------------------- /src/modules/launcher/Wox.Plugin/Logger/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/Wox.Plugin/Logger/Log.cs -------------------------------------------------------------------------------- /src/modules/launcher/Wox.Plugin/PluginMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/Wox.Plugin/PluginMetadata.cs -------------------------------------------------------------------------------- /src/modules/launcher/Wox.Plugin/PluginPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/Wox.Plugin/PluginPair.cs -------------------------------------------------------------------------------- /src/modules/launcher/Wox.Plugin/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/Wox.Plugin/Query.cs -------------------------------------------------------------------------------- /src/modules/launcher/Wox.Plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/Wox.Plugin/README.md -------------------------------------------------------------------------------- /src/modules/launcher/Wox.Plugin/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/Wox.Plugin/Result.cs -------------------------------------------------------------------------------- /src/modules/launcher/Wox.Plugin/SpecialKeyState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/Wox.Plugin/SpecialKeyState.cs -------------------------------------------------------------------------------- /src/modules/launcher/Wox.Plugin/ToolTipData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/Wox.Plugin/ToolTipData.cs -------------------------------------------------------------------------------- /src/modules/launcher/Wox.Plugin/Wox.Plugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/Wox.Plugin/Wox.Plugin.csproj -------------------------------------------------------------------------------- /src/modules/launcher/Wox.Test/FuzzyMatcherTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/Wox.Test/FuzzyMatcherTest.cs -------------------------------------------------------------------------------- /src/modules/launcher/Wox.Test/MainViewModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/Wox.Test/MainViewModelTest.cs -------------------------------------------------------------------------------- /src/modules/launcher/Wox.Test/PluginManagerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/Wox.Test/PluginManagerTest.cs -------------------------------------------------------------------------------- /src/modules/launcher/Wox.Test/Plugins/ResultTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/Wox.Test/Plugins/ResultTest.cs -------------------------------------------------------------------------------- /src/modules/launcher/Wox.Test/QueryBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/Wox.Test/QueryBuilderTest.cs -------------------------------------------------------------------------------- /src/modules/launcher/Wox.Test/Wox.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/Wox.Test/Wox.Test.csproj -------------------------------------------------------------------------------- /src/modules/launcher/Wox.Test/WoxTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/launcher/Wox.Test/WoxTest.cs -------------------------------------------------------------------------------- /src/modules/powerrename/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/README.md -------------------------------------------------------------------------------- /src/modules/powerrename/UWPui/PowerRename.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/UWPui/PowerRename.ico -------------------------------------------------------------------------------- /src/modules/powerrename/UWPui/PowerRenameUWPUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/UWPui/PowerRenameUWPUI.cpp -------------------------------------------------------------------------------- /src/modules/powerrename/UWPui/PowerRenameUWPUI.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/UWPui/PowerRenameUWPUI.rc -------------------------------------------------------------------------------- /src/modules/powerrename/UWPui/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/UWPui/packages.config -------------------------------------------------------------------------------- /src/modules/powerrename/UWPui/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/modules/powerrename/UWPui/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/UWPui/pch.h -------------------------------------------------------------------------------- /src/modules/powerrename/UWPui/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/UWPui/resource.h -------------------------------------------------------------------------------- /src/modules/powerrename/UWPui/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/UWPui/targetver.h -------------------------------------------------------------------------------- /src/modules/powerrename/dll/CLSID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/dll/CLSID.h -------------------------------------------------------------------------------- /src/modules/powerrename/dll/LocProject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/dll/LocProject.json -------------------------------------------------------------------------------- /src/modules/powerrename/dll/PowerRenameConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/dll/PowerRenameConstants.h -------------------------------------------------------------------------------- /src/modules/powerrename/dll/PowerRenameExt.base.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/dll/PowerRenameExt.base.rc -------------------------------------------------------------------------------- /src/modules/powerrename/dll/PowerRenameExt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/dll/PowerRenameExt.cpp -------------------------------------------------------------------------------- /src/modules/powerrename/dll/PowerRenameExt.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/dll/PowerRenameExt.def -------------------------------------------------------------------------------- /src/modules/powerrename/dll/PowerRenameExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/dll/PowerRenameExt.h -------------------------------------------------------------------------------- /src/modules/powerrename/dll/PowerRenameExt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/dll/PowerRenameExt.vcxproj -------------------------------------------------------------------------------- /src/modules/powerrename/dll/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/dll/Resources.resx -------------------------------------------------------------------------------- /src/modules/powerrename/dll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/dll/dllmain.cpp -------------------------------------------------------------------------------- /src/modules/powerrename/dll/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/dll/packages.config -------------------------------------------------------------------------------- /src/modules/powerrename/dll/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/modules/powerrename/dll/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/dll/pch.h -------------------------------------------------------------------------------- /src/modules/powerrename/dll/resource.base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/dll/resource.base.h -------------------------------------------------------------------------------- /src/modules/powerrename/dll/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/dll/targetver.h -------------------------------------------------------------------------------- /src/modules/powerrename/lib/Helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/lib/Helpers.cpp -------------------------------------------------------------------------------- /src/modules/powerrename/lib/Helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/lib/Helpers.h -------------------------------------------------------------------------------- /src/modules/powerrename/lib/PowerRenameEnum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/lib/PowerRenameEnum.cpp -------------------------------------------------------------------------------- /src/modules/powerrename/lib/PowerRenameEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/lib/PowerRenameEnum.h -------------------------------------------------------------------------------- /src/modules/powerrename/lib/PowerRenameInterfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/lib/PowerRenameInterfaces.h -------------------------------------------------------------------------------- /src/modules/powerrename/lib/PowerRenameItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/lib/PowerRenameItem.cpp -------------------------------------------------------------------------------- /src/modules/powerrename/lib/PowerRenameItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/lib/PowerRenameItem.h -------------------------------------------------------------------------------- /src/modules/powerrename/lib/PowerRenameLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/lib/PowerRenameLib.vcxproj -------------------------------------------------------------------------------- /src/modules/powerrename/lib/PowerRenameManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/lib/PowerRenameManager.cpp -------------------------------------------------------------------------------- /src/modules/powerrename/lib/PowerRenameManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/lib/PowerRenameManager.h -------------------------------------------------------------------------------- /src/modules/powerrename/lib/PowerRenameRegEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/lib/PowerRenameRegEx.cpp -------------------------------------------------------------------------------- /src/modules/powerrename/lib/PowerRenameRegEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/lib/PowerRenameRegEx.h -------------------------------------------------------------------------------- /src/modules/powerrename/lib/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/lib/Settings.cpp -------------------------------------------------------------------------------- /src/modules/powerrename/lib/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/lib/Settings.h -------------------------------------------------------------------------------- /src/modules/powerrename/lib/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/lib/packages.config -------------------------------------------------------------------------------- /src/modules/powerrename/lib/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | 3 | -------------------------------------------------------------------------------- /src/modules/powerrename/lib/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/lib/pch.h -------------------------------------------------------------------------------- /src/modules/powerrename/lib/srwlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/lib/srwlock.h -------------------------------------------------------------------------------- /src/modules/powerrename/lib/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/lib/targetver.h -------------------------------------------------------------------------------- /src/modules/powerrename/lib/trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/lib/trace.cpp -------------------------------------------------------------------------------- /src/modules/powerrename/lib/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/lib/trace.h -------------------------------------------------------------------------------- /src/modules/powerrename/testapp/PowerRenameTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/testapp/PowerRenameTest.cpp -------------------------------------------------------------------------------- /src/modules/powerrename/testapp/PowerRenameTest.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /src/modules/powerrename/testapp/PowerRenameTest.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/testapp/PowerRenameTest.ico -------------------------------------------------------------------------------- /src/modules/powerrename/testapp/PowerRenameTest.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/testapp/PowerRenameTest.rc -------------------------------------------------------------------------------- /src/modules/powerrename/testapp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/testapp/packages.config -------------------------------------------------------------------------------- /src/modules/powerrename/testapp/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/modules/powerrename/testapp/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/testapp/pch.h -------------------------------------------------------------------------------- /src/modules/powerrename/testapp/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/testapp/resource.h -------------------------------------------------------------------------------- /src/modules/powerrename/testapp/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/testapp/small.ico -------------------------------------------------------------------------------- /src/modules/powerrename/testapp/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/testapp/targetver.h -------------------------------------------------------------------------------- /src/modules/powerrename/ui/LocProject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/ui/LocProject.json -------------------------------------------------------------------------------- /src/modules/powerrename/ui/PowerRename.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/ui/PowerRename.ico -------------------------------------------------------------------------------- /src/modules/powerrename/ui/PowerRenameUI.base.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/ui/PowerRenameUI.base.rc -------------------------------------------------------------------------------- /src/modules/powerrename/ui/PowerRenameUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/ui/PowerRenameUI.cpp -------------------------------------------------------------------------------- /src/modules/powerrename/ui/PowerRenameUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/ui/PowerRenameUI.h -------------------------------------------------------------------------------- /src/modules/powerrename/ui/PowerRenameUI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/ui/PowerRenameUI.vcxproj -------------------------------------------------------------------------------- /src/modules/powerrename/ui/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/ui/Resources.resx -------------------------------------------------------------------------------- /src/modules/powerrename/ui/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/ui/packages.config -------------------------------------------------------------------------------- /src/modules/powerrename/ui/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" -------------------------------------------------------------------------------- /src/modules/powerrename/ui/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/ui/pch.h -------------------------------------------------------------------------------- /src/modules/powerrename/ui/resource.base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/ui/resource.base.h -------------------------------------------------------------------------------- /src/modules/powerrename/ui/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/ui/targetver.h -------------------------------------------------------------------------------- /src/modules/powerrename/unittests/TestFileHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/unittests/TestFileHelper.h -------------------------------------------------------------------------------- /src/modules/powerrename/unittests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/unittests/packages.config -------------------------------------------------------------------------------- /src/modules/powerrename/unittests/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/modules/powerrename/unittests/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/unittests/pch.h -------------------------------------------------------------------------------- /src/modules/powerrename/unittests/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/unittests/resource.h -------------------------------------------------------------------------------- /src/modules/powerrename/unittests/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/powerrename/unittests/targetver.h -------------------------------------------------------------------------------- /src/modules/previewpane/PreviewPaneUnitTests/HelperFiles/MarkdownWithHTMLImageTag.txt: -------------------------------------------------------------------------------- 1 | ## Something 2 | -------------------------------------------------------------------------------- /src/modules/previewpane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/previewpane/README.md -------------------------------------------------------------------------------- /src/modules/previewpane/STATestClassAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/previewpane/STATestClassAttribute.cs -------------------------------------------------------------------------------- /src/modules/previewpane/STATestMethodAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/previewpane/STATestMethodAttribute.cs -------------------------------------------------------------------------------- /src/modules/previewpane/common/cominterop/MSG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/previewpane/common/cominterop/MSG.cs -------------------------------------------------------------------------------- /src/modules/previewpane/common/cominterop/RECT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/previewpane/common/cominterop/RECT.cs -------------------------------------------------------------------------------- /src/modules/previewpane/powerpreview/CLSID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/previewpane/powerpreview/CLSID.h -------------------------------------------------------------------------------- /src/modules/previewpane/powerpreview/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/previewpane/powerpreview/Resources.resx -------------------------------------------------------------------------------- /src/modules/previewpane/powerpreview/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/previewpane/powerpreview/dllmain.cpp -------------------------------------------------------------------------------- /src/modules/previewpane/powerpreview/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/modules/previewpane/powerpreview/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/previewpane/powerpreview/pch.h -------------------------------------------------------------------------------- /src/modules/previewpane/powerpreview/powerpreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/previewpane/powerpreview/powerpreview.h -------------------------------------------------------------------------------- /src/modules/previewpane/powerpreview/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/previewpane/powerpreview/settings.cpp -------------------------------------------------------------------------------- /src/modules/previewpane/powerpreview/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/previewpane/powerpreview/settings.h -------------------------------------------------------------------------------- /src/modules/previewpane/powerpreview/trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/previewpane/powerpreview/trace.cpp -------------------------------------------------------------------------------- /src/modules/previewpane/powerpreview/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/previewpane/powerpreview/trace.h -------------------------------------------------------------------------------- /src/modules/previewpane/powerpreviewTest/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/modules/previewpane/powerpreviewTest/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/previewpane/powerpreviewTest/pch.h -------------------------------------------------------------------------------- /src/modules/previewpane/powerpreviewTest/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/previewpane/powerpreviewTest/resource.h -------------------------------------------------------------------------------- /src/modules/videoconference/make_cab.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/modules/videoconference/make_cab.ddf -------------------------------------------------------------------------------- /src/runner/ActionRunnerUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/ActionRunnerUtils.h -------------------------------------------------------------------------------- /src/runner/CentralizedHotkeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/CentralizedHotkeys.cpp -------------------------------------------------------------------------------- /src/runner/CentralizedHotkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/CentralizedHotkeys.h -------------------------------------------------------------------------------- /src/runner/LocProject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/LocProject.json -------------------------------------------------------------------------------- /src/runner/PowerToys.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/PowerToys.exe.manifest -------------------------------------------------------------------------------- /src/runner/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/Resources.resx -------------------------------------------------------------------------------- /src/runner/RestartManagement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/RestartManagement.cpp -------------------------------------------------------------------------------- /src/runner/RestartManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/RestartManagement.h -------------------------------------------------------------------------------- /src/runner/UpdateUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/UpdateUtils.cpp -------------------------------------------------------------------------------- /src/runner/UpdateUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/UpdateUtils.h -------------------------------------------------------------------------------- /src/runner/auto_start_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/auto_start_helper.cpp -------------------------------------------------------------------------------- /src/runner/auto_start_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/auto_start_helper.h -------------------------------------------------------------------------------- /src/runner/centralized_kb_hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/centralized_kb_hook.cpp -------------------------------------------------------------------------------- /src/runner/centralized_kb_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/centralized_kb_hook.h -------------------------------------------------------------------------------- /src/runner/general_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/general_settings.cpp -------------------------------------------------------------------------------- /src/runner/general_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/general_settings.h -------------------------------------------------------------------------------- /src/runner/loc/cs/src/runner/Resources.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/loc/cs/src/runner/Resources.resx.lcl -------------------------------------------------------------------------------- /src/runner/loc/de/src/runner/Resources.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/loc/de/src/runner/Resources.resx.lcl -------------------------------------------------------------------------------- /src/runner/loc/es/src/runner/Resources.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/loc/es/src/runner/Resources.resx.lcl -------------------------------------------------------------------------------- /src/runner/loc/fr/src/runner/Resources.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/loc/fr/src/runner/Resources.resx.lcl -------------------------------------------------------------------------------- /src/runner/loc/hu/src/runner/Resources.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/loc/hu/src/runner/Resources.resx.lcl -------------------------------------------------------------------------------- /src/runner/loc/it/src/runner/Resources.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/loc/it/src/runner/Resources.resx.lcl -------------------------------------------------------------------------------- /src/runner/loc/ja/src/runner/Resources.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/loc/ja/src/runner/Resources.resx.lcl -------------------------------------------------------------------------------- /src/runner/loc/ko/src/runner/Resources.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/loc/ko/src/runner/Resources.resx.lcl -------------------------------------------------------------------------------- /src/runner/loc/nl/src/runner/Resources.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/loc/nl/src/runner/Resources.resx.lcl -------------------------------------------------------------------------------- /src/runner/loc/pl/src/runner/Resources.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/loc/pl/src/runner/Resources.resx.lcl -------------------------------------------------------------------------------- /src/runner/loc/pt-BR/src/runner/Resources.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/loc/pt-BR/src/runner/Resources.resx.lcl -------------------------------------------------------------------------------- /src/runner/loc/pt-PT/src/runner/Resources.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/loc/pt-PT/src/runner/Resources.resx.lcl -------------------------------------------------------------------------------- /src/runner/loc/ru/src/runner/Resources.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/loc/ru/src/runner/Resources.resx.lcl -------------------------------------------------------------------------------- /src/runner/loc/sv/src/runner/Resources.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/loc/sv/src/runner/Resources.resx.lcl -------------------------------------------------------------------------------- /src/runner/loc/tr/src/runner/Resources.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/loc/tr/src/runner/Resources.resx.lcl -------------------------------------------------------------------------------- /src/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/main.cpp -------------------------------------------------------------------------------- /src/runner/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/packages.config -------------------------------------------------------------------------------- /src/runner/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/runner/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/pch.h -------------------------------------------------------------------------------- /src/runner/powertoy_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/powertoy_module.cpp -------------------------------------------------------------------------------- /src/runner/powertoy_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/powertoy_module.h -------------------------------------------------------------------------------- /src/runner/resource.base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/resource.base.h -------------------------------------------------------------------------------- /src/runner/restart_elevated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/restart_elevated.cpp -------------------------------------------------------------------------------- /src/runner/restart_elevated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/restart_elevated.h -------------------------------------------------------------------------------- /src/runner/runner.base.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/runner.base.rc -------------------------------------------------------------------------------- /src/runner/runner.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/runner.vcxproj -------------------------------------------------------------------------------- /src/runner/runner.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/runner.vcxproj.filters -------------------------------------------------------------------------------- /src/runner/settings_telemetry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/settings_telemetry.cpp -------------------------------------------------------------------------------- /src/runner/settings_telemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/settings_telemetry.h -------------------------------------------------------------------------------- /src/runner/settings_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/settings_window.cpp -------------------------------------------------------------------------------- /src/runner/settings_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/settings_window.h -------------------------------------------------------------------------------- /src/runner/svgs/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/svgs/icon.ico -------------------------------------------------------------------------------- /src/runner/trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/trace.cpp -------------------------------------------------------------------------------- /src/runner/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/trace.h -------------------------------------------------------------------------------- /src/runner/tray_icon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/tray_icon.cpp -------------------------------------------------------------------------------- /src/runner/tray_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/tray_icon.h -------------------------------------------------------------------------------- /src/runner/unhandled_exception_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/runner/unhandled_exception_handler.cpp -------------------------------------------------------------------------------- /src/runner/unhandled_exception_handler.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #if _DEBUG && _WIN64 3 | void init_global_error_handlers(); 4 | #endif 5 | -------------------------------------------------------------------------------- /src/settings-ui/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/settings-ui/Directory.Build.targets -------------------------------------------------------------------------------- /src/settings-ui/Microsoft.PowerToys.Settings.UI.UnitTests/BackwardsCompatibility/TestFiles/V0.21.1/Microsoft/PowerToys/PowerRename/power-rename-ui-flags: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /src/settings-ui/Microsoft.PowerToys.Settings.UI.UnitTests/BackwardsCompatibility/TestFiles/v0.18.2/Microsoft/PowerToys/PowerRename/power-rename-ui-flags: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /src/settings-ui/Microsoft.PowerToys.Settings.UI.UnitTests/BackwardsCompatibility/TestFiles/v0.19.2/Microsoft/PowerToys/PowerRename/power-rename-ui-flags: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /src/settings-ui/Microsoft.PowerToys.Settings.UI.UnitTests/BackwardsCompatibility/TestFiles/v0.20.1/Microsoft/PowerToys/PowerRename/power-rename-ui-flags: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /src/settings-ui/Microsoft.PowerToys.Settings.UI.UnitTests/BackwardsCompatibility/TestFiles/v0.22.0/Microsoft/PowerToys/PowerRename/power-rename-ui-flags: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /src/settings-ui/PowerToys.Settings/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/settings-ui/PowerToys.Settings/App.xaml -------------------------------------------------------------------------------- /src/settings-ui/PowerToys.Settings/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/settings-ui/PowerToys.Settings/App.xaml.cs -------------------------------------------------------------------------------- /src/settings-ui/PowerToys.Settings/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/settings-ui/PowerToys.Settings/MainWindow.xaml -------------------------------------------------------------------------------- /src/settings-ui/PowerToys.Settings/OobeWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/settings-ui/PowerToys.Settings/OobeWindow.xaml -------------------------------------------------------------------------------- /src/settings-ui/PowerToys.Settings/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/settings-ui/PowerToys.Settings/Program.cs -------------------------------------------------------------------------------- /src/settings-ui/PowerToys.Settings/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/settings-ui/PowerToys.Settings/Utils.cs -------------------------------------------------------------------------------- /src/settings-ui/PowerToys.Settings/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/settings-ui/PowerToys.Settings/app.manifest -------------------------------------------------------------------------------- /src/settings-ui/PowerToys.Settings/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/settings-ui/PowerToys.Settings/icon.ico -------------------------------------------------------------------------------- /src/tests/win-app-driver/FancyZonesTests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/tests/win-app-driver/FancyZonesTests/README.md -------------------------------------------------------------------------------- /src/tests/win-app-driver/PowerToysSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/tests/win-app-driver/PowerToysSession.cs -------------------------------------------------------------------------------- /src/tests/win-app-driver/PowerToysTrayTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/tests/win-app-driver/PowerToysTrayTests.cs -------------------------------------------------------------------------------- /src/tests/win-app-driver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/tests/win-app-driver/README.md -------------------------------------------------------------------------------- /src/tests/win-app-driver/TestShortcutGuideHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/tests/win-app-driver/TestShortcutGuideHelper.cs -------------------------------------------------------------------------------- /src/tests/win-app-driver/win-app-driver.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/src/tests/win-app-driver/win-app-driver.csproj -------------------------------------------------------------------------------- /tools/BugReportTool/BugReportTool.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/BugReportTool/BugReportTool.sln -------------------------------------------------------------------------------- /tools/BugReportTool/BugReportTool/EventViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/BugReportTool/BugReportTool/EventViewer.cpp -------------------------------------------------------------------------------- /tools/BugReportTool/BugReportTool/EventViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/BugReportTool/BugReportTool/EventViewer.h -------------------------------------------------------------------------------- /tools/BugReportTool/BugReportTool/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/BugReportTool/BugReportTool/Main.cpp -------------------------------------------------------------------------------- /tools/BugReportTool/BugReportTool/RegistryUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/BugReportTool/BugReportTool/RegistryUtils.cpp -------------------------------------------------------------------------------- /tools/BugReportTool/BugReportTool/RegistryUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/BugReportTool/BugReportTool/RegistryUtils.h -------------------------------------------------------------------------------- /tools/BugReportTool/BugReportTool/XmlDocumentEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/BugReportTool/BugReportTool/XmlDocumentEx.cpp -------------------------------------------------------------------------------- /tools/BugReportTool/BugReportTool/XmlDocumentEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/BugReportTool/BugReportTool/XmlDocumentEx.h -------------------------------------------------------------------------------- /tools/BugReportTool/BugReportTool/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/BugReportTool/BugReportTool/packages.config -------------------------------------------------------------------------------- /tools/CleanUp_tool/CleanUp_tool.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/CleanUp_tool/CleanUp_tool.sln -------------------------------------------------------------------------------- /tools/CleanUp_tool/CleanUp_tool.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/CleanUp_tool/CleanUp_tool.vcxproj -------------------------------------------------------------------------------- /tools/CleanUp_tool/CleanUp_tool.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/CleanUp_tool/CleanUp_tool.vcxproj.filters -------------------------------------------------------------------------------- /tools/CleanUp_tool/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/CleanUp_tool/main.cpp -------------------------------------------------------------------------------- /tools/FancyZone_HitTest/FancyZone_HitTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/FancyZone_HitTest/FancyZone_HitTest.sln -------------------------------------------------------------------------------- /tools/FancyZone_HitTest/FancyZone_HitTest/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/FancyZone_HitTest/FancyZone_HitTest/App.xaml -------------------------------------------------------------------------------- /tools/FancyZonesEditor_DPI_netcore_test/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/FancyZonesEditor_DPI_netcore_test/App.xaml -------------------------------------------------------------------------------- /tools/FancyZonesEditor_DPI_netcore_test/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/FancyZonesEditor_DPI_netcore_test/App.xaml.cs -------------------------------------------------------------------------------- /tools/FancyZones_DrawLayoutTest/FancyZones_DrawLayoutTest.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "Resource.h" 4 | -------------------------------------------------------------------------------- /tools/FancyZones_DrawLayoutTest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/FancyZones_DrawLayoutTest/README.md -------------------------------------------------------------------------------- /tools/FancyZones_DrawLayoutTest/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/FancyZones_DrawLayoutTest/Resource.h -------------------------------------------------------------------------------- /tools/FancyZones_DrawLayoutTest/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/FancyZones_DrawLayoutTest/framework.h -------------------------------------------------------------------------------- /tools/FancyZones_zonable_tester/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/FancyZones_zonable_tester/main.cpp -------------------------------------------------------------------------------- /tools/WebcamReportTool/DirectShowUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/WebcamReportTool/DirectShowUtils.cpp -------------------------------------------------------------------------------- /tools/WebcamReportTool/DirectShowUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/WebcamReportTool/DirectShowUtils.h -------------------------------------------------------------------------------- /tools/WebcamReportTool/WebcamReportTool.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/WebcamReportTool/WebcamReportTool.sln -------------------------------------------------------------------------------- /tools/WebcamReportTool/WebcamReportTool.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/WebcamReportTool/WebcamReportTool.vcxproj -------------------------------------------------------------------------------- /tools/WebcamReportTool/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/WebcamReportTool/main.cpp -------------------------------------------------------------------------------- /tools/WebcamReportTool/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/WebcamReportTool/packages.config -------------------------------------------------------------------------------- /tools/build/build-essentials.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/build/build-essentials.ps1 -------------------------------------------------------------------------------- /tools/build/convert-resx-to-rc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/build/convert-resx-to-rc.ps1 -------------------------------------------------------------------------------- /tools/build/convert-stringtable-to-resx.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/build/convert-stringtable-to-resx.ps1 -------------------------------------------------------------------------------- /tools/build/versionSetting.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/build/versionSetting.ps1 -------------------------------------------------------------------------------- /tools/build/video_conference_make_cab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/build/video_conference_make_cab.ps1 -------------------------------------------------------------------------------- /tools/localization/move_uwp_resources.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/localization/move_uwp_resources.ps1 -------------------------------------------------------------------------------- /tools/project_template/ModuleTemplate.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/project_template/ModuleTemplate.zip -------------------------------------------------------------------------------- /tools/project_template/ModuleTemplate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/project_template/ModuleTemplate/README.md -------------------------------------------------------------------------------- /tools/project_template/ModuleTemplate/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/project_template/ModuleTemplate/dllmain.cpp -------------------------------------------------------------------------------- /tools/project_template/ModuleTemplate/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /tools/project_template/ModuleTemplate/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/project_template/ModuleTemplate/pch.h -------------------------------------------------------------------------------- /tools/project_template/ModuleTemplate/resource.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/project_template/ModuleTemplate/trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/project_template/ModuleTemplate/trace.cpp -------------------------------------------------------------------------------- /tools/project_template/ModuleTemplate/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/project_template/ModuleTemplate/trace.h -------------------------------------------------------------------------------- /tools/project_template/PowerToyTemplate.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/project_template/PowerToyTemplate.sln -------------------------------------------------------------------------------- /tools/project_template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/project_template/README.md -------------------------------------------------------------------------------- /tools/project_template/TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IzaiahSun/PowerToys/HEAD/tools/project_template/TemplateIcon.ico --------------------------------------------------------------------------------