Skip to content

Commit

Permalink
fix: windows lock fixed win key bug
Browse files Browse the repository at this point in the history
  • Loading branch information
seonglae committed Nov 26, 2021
1 parent 65cb1a5 commit dab6c1a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# 0.8.2
- fix: windows lock fixed `win` key bug
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "intuiter",
"displayName": "Intuiter",
"description": "Global Windows Productivity Application",
"version": "0.8.1",
"version": "0.8.2",
"main": "./dist/main/index.js",
"scripts": {
"dev": "node .electron-nuxt/dev.js",
Expand Down
4 changes: 3 additions & 1 deletion resources/ahk/src/right/mouse.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,10 @@ return
Lwin & l::
if (!GetKeyState("shift"))
mouse_right(V_ACCEL, MAX_V, X_V, Y_V, AXIS_V)
else if (GetKeyState("shift"))
else if (GetKeyState("shift")){
sendraw {LWin Up}
run %windir%\System32\tsdiscon.exe
}
return

; meta - click
Expand Down
2 changes: 2 additions & 0 deletions resources/ahk/src/text_edit.ahk
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
; Left Home
Lalt & h::
if (!GetKeyState("shift") && !GetKeyState("ctrl") && !GetKeyState("lwin"))
send, {home}
Expand All @@ -9,6 +10,7 @@ Lalt & h::
send, ^+{home}
return

; Right End
Lalt & `;::
if (!GetKeyState("shift") && !GetKeyState("ctrl") && !GetKeyState("lwin"))
send, {end}
Expand Down

0 comments on commit dab6c1a

Please sign in to comment.