-
-
Notifications
You must be signed in to change notification settings - Fork 449
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow setting Win+S shortcut in Windows 11 #249
Comments
In Windows 10 the shortcut gets registered before explorer.exe itself registers Win+S for the Windows default search. In Windows 11 EverythingToolbar gets launched after explorer.exe has already been started so Win+S will already be in use. This would probably require changes to how the shortcut gets registered. |
Hacky FixI saw this issue, was upset at the lack of solution, so made a hacky one myself. Unbinding the default Win+S behaviorUsing Powertoys Keyboard Manager, redirect the Binding Win+S to EverythingToolBarThen, create an AHK script that listens for that key, and opens EverythingToolbar: #Requires AutoHotkey >=2.0
#SingleInstance Force
F24:: run "C:\Program Files (x86)\EverythingToolbar\EverythingToolbar.Launcher.exe"
+F24:: Send "{PrintScreen}" ; the powertoys bind unbinds win+shift+s, so rebind it back to snipping tool Fixing Win+Shift+S snipping toolThe PowerToys rebind breaks Making it permanentTo make sure the AHK script is always running:
|
you don't need those. |
Preflight Checklist
EverythingToolbar Version
0.8.0.0
Windows Version
Win 11 Pro 22H2
Steps to reproduce
Expected Behavior
Actual Behavior
Screenshots
Log output
Just Old Logs.. nothing new
2022-08-23 16:03:51.4979|INFO|EverythingToolbar started. Version: 0.7.4.0, OS: Microsoft Windows NT 10.0.22621.0|
2022-08-23 16:03:51.8886|ERROR|IPC is not available.|
2022-08-23 16:03:51.8886|ERROR|Failed to get Everything version number. Is Everything running?|
Additional Information
I Know "Win + S" is the default for Windows Default Search.. (but as I saw in anotoher Issue it's intendet that you can set Win Q or Win S)
In the Older versions it worked (0.7.4.0) well it was the Windows 10 Taskbar version :(
Oh and the new Version on the Win 11 Taskbar.. Ich liebe dich/euch!!
Thank u so much for this Update 😊
The text was updated successfully, but these errors were encountered: