mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-15 19:27:56 +01:00
Update launcher readme (#3034)
* Added readme and module overview link * Fixed image link * Added a known issue per review comment * Changed images location
This commit is contained in:
BIN
doc/images/Launcher/Features.gif
Normal file
BIN
doc/images/Launcher/Features.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.4 MiB |
BIN
doc/images/Launcher/FeaturesButtons.gif
Normal file
BIN
doc/images/Launcher/FeaturesButtons.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.0 MiB |
BIN
doc/images/Launcher/FeaturesCalculator.gif
Normal file
BIN
doc/images/Launcher/FeaturesCalculator.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.4 MiB |
BIN
doc/images/Launcher/FeaturesShell.gif
Normal file
BIN
doc/images/Launcher/FeaturesShell.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.6 MiB |
BIN
doc/images/Launcher/FeaturesWindowWalker.gif
Normal file
BIN
doc/images/Launcher/FeaturesWindowWalker.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 6.5 MiB |
BIN
doc/images/Launcher/QuickStart.gif
Normal file
BIN
doc/images/Launcher/QuickStart.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 16 MiB |
@@ -140,7 +140,7 @@
|
|||||||
Style="{StaticResource SettingsGroupTitleStyle}"
|
Style="{StaticResource SettingsGroupTitleStyle}"
|
||||||
Margin="{StaticResource XSmallBottomMargin}"/>
|
Margin="{StaticResource XSmallBottomMargin}"/>
|
||||||
|
|
||||||
<HyperlinkButton>
|
<HyperlinkButton NavigateUri="https://github.com/microsoft/PowerToys/tree/master/src/modules/launcher">
|
||||||
<TextBlock x:Uid="Module_overview" />
|
<TextBlock x:Uid="Module_overview" />
|
||||||
</HyperlinkButton>
|
</HyperlinkButton>
|
||||||
|
|
||||||
|
|||||||
@@ -91,6 +91,8 @@ public:
|
|||||||
// Create a Settings object.
|
// Create a Settings object.
|
||||||
PowerToysSettings::Settings settings(hinstance, get_name());
|
PowerToysSettings::Settings settings(hinstance, get_name());
|
||||||
settings.set_description(GET_RESOURCE_STRING(IDS_LAUNCHER_SETTINGS_DESC));
|
settings.set_description(GET_RESOURCE_STRING(IDS_LAUNCHER_SETTINGS_DESC));
|
||||||
|
settings.set_overview_link(L"https://github.com/microsoft/PowerToys/blob/master/src/modules/launcher/README.md");
|
||||||
|
|
||||||
return settings.serialize_to_buffer(buffer, buffer_size);
|
return settings.serialize_to_buffer(buffer, buffer_size);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1,71 @@
|
|||||||
TO DO UPDATE
|
# PowerToys Run
|
||||||
|
PowerToys Run is a quick launcher for power users that has additional
|
||||||
|
capabilities without sacrificing performance. It is open source and
|
||||||
|
modular for additional plugins. Press Alt+Space and start typing!
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
# 1\. Get Started
|
||||||
|
## 1\.1 Features
|
||||||
|
Search for applications, folders, or files
|
||||||
|

|
||||||
|
|
||||||
|
Search for running processes (previously
|
||||||
|
[WindowWalker](https://github.com/betsegaw/windowwalker/))
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
Clickable buttons with keyboard shortcuts
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
Invoke Shell Plugin using "\> "
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
Do a simple calculation using calculator
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## 1\.2 Settings
|
||||||
|
| **Settings** | **Action** |
|
||||||
|
| --------------- | ------------------------------------------------------------------------------- |
|
||||||
|
| Maximum number of results | Maximum number of results shown without scrolling on PowerToys Run |
|
||||||
|
| Open PowerToys Run shortcut | The keyboard shortcut to open/hide PowerToys Run |
|
||||||
|
|
||||||
|
## 1\.3 Keyboard Shortcuts
|
||||||
|
| **Shortcuts** | **Action** |
|
||||||
|
| ------------------ | ---------------------------------------------------------------------------------|
|
||||||
|
| Alt+Space | Open or hide PowerToys Run |
|
||||||
|
| Esc | Hide PowerToys Run |
|
||||||
|
| Ctrl+Shift+Enter | (Only applicable to applications) Open the selected application as administrator |
|
||||||
|
| Ctrl+Shift+E | (Only applicable to applications and files) Open containing folder in File Explorer |
|
||||||
|
| Ctrl+C | (Only applicable to folders and files) Copy path location |
|
||||||
|
| Tab | Navigate through the search result and context menu buttons |
|
||||||
|
|
||||||
|
# 2\. Known Issues
|
||||||
|
|
||||||
|
- [Shudder on monitor change in a multi-monitor setup](https://github.com/microsoft/PowerToys/issues/3018)
|
||||||
|
|
||||||
|
- [On first start, clicking away doesn't hide launcher](https://github.com/microsoft/PowerToys/issues/2973)
|
||||||
|
|
||||||
|
- [Navigating through Tab doesn't have a clear UI indication if context buttons or search result is selected](https://github.com/microsoft/PowerToys/issues/2559)
|
||||||
|
|
||||||
|
- ['\>' entered at the beginning disappears when you choose an option through keyboard navigation](https://github.com/microsoft/PowerToys/issues/2576)
|
||||||
|
|
||||||
|
- [There is a misalignment in the shadow text](https://github.com/microsoft/PowerToys/issues/2494)
|
||||||
|
|
||||||
|
- [Reducing number of shown results doesn't resize search result properly](https://github.com/microsoft/PowerToys/issues/2456)
|
||||||
|
|
||||||
|
- [Context menu buttons sometimes are not showing when hovered with mouse](https://github.com/microsoft/PowerToys/issues/2420)
|
||||||
|
|
||||||
|
- [Scroll on the first result, not the whole search result box](https://github.com/microsoft/PowerToys/issues/2306)
|
||||||
|
|
||||||
|
For a list of all known issues/suggestions, check it out
|
||||||
|
[here](https://github.com/microsoft/PowerToys/issues?q=is%3Aopen+is%3Aissue+label%3AProduct-Launcher).
|
||||||
|
|
||||||
|
# 3\. Attribution
|
||||||
|
|
||||||
|
[Wox](https://github.com/Wox-launcher/Wox/)
|
||||||
|
|
||||||
|
[Beta Tadele's Window Walker](https://github.com/Wox-launcher/Wox/)
|
||||||
|
|||||||
Reference in New Issue
Block a user