web-dev-qa-db-ja.com

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
Shaun

ターミナルが.minttyrc設定ファイルを見つけることができません

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

これを行う最も簡単な方法は、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
2
DavidPostill