You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Plex-Meta-Manager/docs/kometa/install/wt/wt-editor.md

1.5 KiB

=== ":fontawesome-brands-linux: Linux"

  [type this into your terminal]

  ``` { .shell }
  nano config/config.yml
  ```

  Im using `nano` here mostly because its simpler than any other editor on Linux.

  You can use any other text editor you wish, provided it saves files as PLAIN TEXT.  `vi`, `emacs`, etc.

=== ":fontawesome-brands-apple: macOS"

  [type this into your terminal]

  ``` { .shell }
  nano config/config.yml
  ```

  Im using `nano` here simply because its built into OSX.  You can use any other text editor you wish, provided it saves files as PLAIN TEXT.  BBedit, TextMate, VSCode, etc.

  A common mistake is using TextEdit.app, which saves files as RTF by default.

=== ":fontawesome-brands-windows: Windows"

  [type this into your terminal]

  ``` { .shell }
  notepad .\config\config.yml
  ```
  Im using `notepad` here simply because its built into Windows.  You can use any other text editor you wish, provided it saves files as PLAIN TEXT.

From here on in, when this walkthrough says "open the config file", I mean this nano or notepad command.

??? info ":fontawesome-brands-linux: What if I see an error?"

If you see something like:
``` { .shell .no-copy }
$ nano config/config.yml
zsh: command not found: nano
```
You need to switch to another editor like `vi` or `emacs`, or install `nano`, which you would do with `sudo apt install nano`