Skip to content
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

Open
2 tasks done
bloodyeyesblackblood opened this issue Aug 24, 2022 · 3 comments
Open
2 tasks done

Allow setting Win+S shortcut in Windows 11 #249

bloodyeyesblackblood opened this issue Aug 24, 2022 · 3 comments
Labels
enhancement Enhancement to existing functionality launcher Issue related to toolbar launcher p:2 Priority 2

Comments

@bloodyeyesblackblood
Copy link

Preflight Checklist

  • I have fully read the README and it did not solve the problem.
  • I have searched all open and closed issues for the same bug report without success.

EverythingToolbar Version

0.8.0.0

Windows Version

Win 11 Pro 22H2

Steps to reproduce

  1. Set "Win + S" as the ShortCut for the Win 11 Taskbar
  2. Restart PC
  3. Error

Expected Behavior

  1. Starting Windows
  2. Press Win + S
  3. Search

Actual Behavior

  1. Windows Started, Logged In
  2. Error, shortcut couldn't be Set because it's set somewhere else

Screenshots

image

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 😊

@srwi srwi added bug Something isn't working windows-11 labels Aug 24, 2022
@srwi
Copy link
Owner

srwi commented Oct 2, 2022

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.

@srwi srwi changed the title Bug: Shortcut Error when Reastarting PC Allow setting Win+S shortcut in Windows 11 Jan 28, 2023
@srwi srwi added feature idea Requested feature and removed bug Something isn't working labels Jan 28, 2023
@srwi srwi removed the windows-11 label Mar 8, 2023
@srwi srwi added the launcher Issue related to toolbar launcher label Aug 17, 2023
@CodeF53
Copy link

CodeF53 commented Sep 20, 2023

Hacky Fix

I saw this issue, was upset at the lack of solution, so made a hacky one myself.

Unbinding the default Win+S behavior

Using Powertoys Keyboard Manager, redirect the win+s shortcut to an identifiable, but unique key, like F24:
powertoys keyboard manager

Binding Win+S to EverythingToolBar

Then, 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 tool

The PowerToys rebind breaks win+shift+s, to fix this, the AHK script sends PrtSc when shift is held. We can then bind that back to Snipping Tool by going to Settings > Accessibility > Keyboard and enabling "Use the Print screen key to open Snipping Tool"

Windows Keyboard Accessibility Settings

Making it permanent

To make sure the AHK script is always running:

  1. Open Task Scheduler, Action > Create Basic Task
  2. Trigger: "When I log on"
  3. Action: Start a program - path to your AHK script

@srwi srwi mentioned this issue Nov 1, 2023
1 task
@fideliochan
Copy link

you don't need those.
undergroundwires/privacy.sexy#343 (comment) this all you need

@srwi srwi added p:2 Priority 2 enhancement Enhancement to existing functionality and removed feature idea Requested feature labels Sep 15, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement Enhancement to existing functionality launcher Issue related to toolbar launcher p:2 Priority 2
Projects
None yet
Development

No branches or pull requests

4 participants