更改了 cygwin 主目录位置,现在终端找不到我的 .minttyrc 配置文件

更改了 cygwin 主目录位置,现在终端找不到我的 .minttyrc 配置文件

我必须更改HOMECygwin 的位置,将其设置为获取我设置的目录/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 配置文件的位置。

最简单的方法是将 minty 快捷方式更改为

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

相关内容