Skip to content

Commit 7219c84

Browse files
committed
32bit 호환 설정
1 parent 174295a commit 7219c84

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

change_key/window_key.ahk

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,28 @@ return
1717
RunActivateOrSwitch(path)
1818
return
1919

20+
;; http://www.disavian.net/finding-program-files-64bit-autohotkey/
21+
ProgFiles32()
22+
{
23+
EnvGet, ProgFiles32, ProgramFiles(x86)
24+
if ProgFiles32 = ; Probably not on a 64-bit system.
25+
EnvGet, ProgFiles32, ProgramFiles
26+
Return %ProgFiles32%
27+
}
28+
29+
ProgFiles64()
30+
{
31+
EnvGet, ProgFiles64, ProgramW6432
32+
Return %ProgFiles64%
33+
}
34+
35+
36+
#e::
37+
ProgFiles := ProgFiles64()
38+
path = %ProgFiles%\Double Commander\doublecmd.exe
39+
RunActivateOrSwitch(path)
40+
return
41+
2042
; run EverNote
2143
; #n::
2244
; ; path = "%ENV_PROGRAMFILES_X86%\Evernote\Evernote\Evernote.exe"

docs/_sections/3_structure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: 폴더 구조
33
icon: fa-check
4-
order: 4
4+
order: 3
55
---
66

77

0 commit comments

Comments
 (0)