persona

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

Alacritty.ahk (283B)


      1 !Enter::
      2 {
      3     try
      4     {
      5         Run("alacritty.exe")
      6         WinActive("ahk_exe alacritty.exe")
      7     }
      8     catch
      9     {
     10         MsgBox("alacritty.exe が見つかりません。環境変数(PATH)を確認するか、フルパスを指定してください。")
     11     }
     12 }