dotfiles/bin/windows/install_key_remaps.ps1

32 lines
727 B
PowerShell
Raw Normal View History

2022-10-06 22:20:08 +09:00
# Install script for AHK key remapping
# Be sure to install AutoHotKey first
# check working directory
if (!(
(Test-Path bin) -and (Test-Path dotfiles)
)) {
Write-Warning -Message "wrong current path
please execute at repo root"
exit 1
}
# set Ahk2Exe.exe path
# example "C:\Program Files\AutoHotKey\Compiler\Ahk2Exe.exe"
$ahk2exe_path = "C:\Program Files\AutoHotKey\Compiler\Ahk2Exe.exe"
## end config
if ($null -eq $ahk2exe_path) {
exit
}
# compile
& $ahk2exe_path /in .\dotfiles\ahk\key_remaps.ahk /out dotfiles\ahk\key_remaps.exe
# add to startup folder
$startup = "$env:APPDATA\Microsoft\Windows\Start Menu\Programs\Startup\"
Copy-Item .\dotfiles\ahk\key_remaps.exe $startup
Write-Output "Finished!"