Cygwin のホーム ロケーションを変更したため、ターミナルが .minttyrc 設定ファイルを見つけられなくなりました

Cygwin のホーム ロケーションを変更したため、ターミナルが .minttyrc 設定ファイルを見つけられなくなりました

Cygwinの場所を変更する必要がありました。(以下)HOMEで設定したディレクトリを取得するように設定しました。/etc/passwdここからの解決策)。私の設定ファイルの大部分では問題はないようです。期待通りに読み込まれます.bashrc.vimrc

しかし、ファイルの設定が反映されません.minttyrc。デフォルトの色で読み込まれます。タイトル バーを右クリックして [オプション] を選択し、Windows から新しい設定を追加しようとすると、エラーが発生します。

Could not save options to '[old home directory]':
No such file or directory.

古いホーム ディレクトリを再構築して.minttyrcそこにファイルを配置すると、正常に動作します。場所を.minttyrc別途更新する必要がある場所はありますか?

答え1

ターミナルが .minttyrc 設定ファイルを見つけられません

オプションを使用して-c file、mintty 構成ファイルの場所を指定できます。

これを行う最も簡単な方法は、ミントのショートカットを次のように変更することです。

C:\cygwin\bin\mintty.exe -c ~/.minttyrc -i /Cygwin-Terminal.ico -

Cygwin の設定に応じて適宜変更します。


参考文献

$ mintty --help
Usage: mintty [OPTION]... [ PROGRAM [ARG]... | - ]

Start a new terminal session running the specified program or the user's shell.
If a dash is given instead of a program, invoke the shell as a login shell.

Options:
  -c, --config FILE     Load specified config file
  -e, --exec            Treat remaining arguments as the command to execute
  -h, --hold never|start|error|always  Keep window open after command finishes
  -i, --icon FILE[,IX]  Load window icon from file, optionally with index
  -l, --log FILE|-      Log output to file or stdout
  -o, --option OPT=VAL  Override config file option with given value
  -p, --position X,Y    Open window at specified coordinates
  -s, --size COLS,ROWS  Set screen size in characters
  -t, --title TITLE     Set window title (default: the invoked command)
  -u, --utmp            Create a utmp entry
  -w, --window normal|min|max|full|hide  Set initial window state
      --class CLASS     Set window class name (default: mintty)
  -H, --help            Display help and exit
  -V, --version         Print version information and exit

関連情報