Skip to content

v0.40.0

Choose a tag to compare

@github-actions github-actions released this 13 Jun 13:55
· 13 commits to main since this release

0.40.0 (2026-06-13)

新機能 Application Hints を追加しました。

🎥 Demo movie (YouTube)👇
YouTube Video UnIfdg4emzU

image
  • アプリが起動していない場合
    • 起動 & ウィンドウを開きます
  • アプリが起動している(ウィンドウがある)場合
    • 新しいウィンドウで開きます

Application Hintsの対象アプリは設定に追加が必要です。また、cmd + n で新しいウィンドウを開けないアプリは newWindow.hotkey の設定が必要です。

	application_hints = {
		apps = {
			{
				bundleID = "com.mitchellh.ghostty",
				key = "G",
				newWindow = {
					hotkey = {
						modifiers = { "ctrl" },
						key = "n",
					},
				},
			},
			{
				bundleID = "com.google.Chrome",
				key = "E",
			},
			{
				bundleID = "com.cmuxterm.app",
				key = "C",
				newWindow = {
					hotkey = {
						modifiers = { "ctrl", "shift", "cmd" },
						key = "l",
					},
				},
			},
		},
	},

動画では Window Hints から Application Hints を起動したときにJinrai Modeになっていますが、デフォルト設定ではJinrai Modeになりません。以下のような設定が必要です。

  window_hints = {
    navigation = {
      applicationHints = {
        key = "n",
        jinraiMode = true,
      }
    }
  }

✨ Features

  • jinrai_mode: Jinrai Modeのロゴ・コンボ表示のデフォルトアルファ値を調整 (38cf1fb)
  • application_hints: アプリケーションヒント機能を追加 (af7c5ae)