0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

[備忘録] macOSでGoogle入力をアンインストールせずに一旦完全に止める方法

0
Posted at
  • macOS向けGoogle日本語はRosetta2依存
  • google/mozc では、 CI for macOS からarm64版( = Apple Silicon版)が落とせる
  • これを入れて、様子見しようとするも、GoogleIMEをOSの設定の入力ソースから消しても、GoogleJapaneseInput GoogleJapaneseInputConverter GoogleJapaneseInputRenderer がプロセスとしてずっと生きてる
  • アンインストールするのは面倒(戻す可能性がある)

というのを一旦どうにかするメモ

launchdで動いているサービス名を確認すると、以下が動いている。これを止めれば良さそう

% launchctl  list | grep google
-	0	com.google.inputmethod.Japanese.Converter
-	0	com.google.inputmethod.Japanese.Renderer
97791	0	application.com.google.inputmethod.Japanese.7697793.230456987

止める

  1. 入力ソースからGoogle日本語入力を抜く
    設定 → キーボードから抜いてください
  2. launchctlでサービスを止める
launchctl remove application.com.google.inputmethod.Japanese.7697793.230456987
launchctl remove com.google.inputmethod.Japanese.Converter
launchctl remove com.google.inputmethod.Japanese.Renderer

有効化する

戻したいときもあるでしょう。以下の手順で。

  1. launchctlでload (2つだけ)
launchctl load /Library/LaunchAgents/com.google.inputmethod.Japanese.Converter.plist
launchctl load /Library/LaunchAgents/com.google.inputmethod.Japanese.Renderer
  1. 入力ソースにGoogle日本語入力をいれる
    設定 → キーボードから入れてください
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?