Skip to content

Commit b62c2d9

Browse files
committed
Update README
1 parent bcc836b commit b62c2d9

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

README.md

+8-6
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,16 @@ curl -L https://github.com/cryptomator/cli/releases/download/0.7.0/cryptomator-c
1414
unzip cryptomator-cli.zip
1515
```
1616

17-
Afterward, you can directly run Cryptomator-CLI by calling the binary, e.g. on Linux:
17+
Afterward, you can directly run Cryptomator-CLI by calling the binary from a terminal, e.g. on Linux:
1818
```shell
1919
./cryptomator-cli/cryptomator-cli unlock \
2020
--password:stdin \
2121
--mounter=org.cryptomator.frontend.fuse.mount.LinuxFuseMountProvider \
2222
--mountPoint=/path/to/empty/dir \
2323
/home/user/myVault
2424
```
25+
> [!NOTE]
26+
> On macOS, the path to the binary is `cryptomator-cli.app/Contents/MacOS/cryptomator-cli`
2527
2628
To unmount, send a SIGTERM signal to the process, e.g. by pressing CTRL+C (macOS: CMD+C) in the terminal.
2729

@@ -40,15 +42,15 @@ These are:
4042

4143
As a fallback, you can [skip filesystem integration](README.md#skip-filesystem-integration) by using WebDAV.
4244

43-
## Selecting the Mounter
45+
### Selecting the Mounter
4446

4547
To list all available mounters, use the `list-mounters` subcommand:
4648
```shell
4749
cryptomator-cli list-mounters
4850
```
4951
Pick one from the printed list and use it as input for the `--mounter` option.
5052

51-
## Skip Filesystem Integration
53+
### Skip Filesystem Integration
5254

5355
If you don't want a direct integration in the OS, choose `org.cryptomator.frontend.webdav.mount.FallbackMounter` for `--mounter`.
5456
It starts a local WebDAV server, where you can access the vault with any WebDAV client or mounting it into your filesystem manually.
@@ -57,15 +59,15 @@ It starts a local WebDAV server, where you can access the vault with any WebDAV
5759
> The WebDAV protocol is supported by all major OSses. Hence, if other mounters fail or show errors when accessing the vault content, you can always use the legacy WebDAV option.
5860
> WebDAV is not the default, because it has a low performance and might have OS dependent restrictions (e.g. maximum file size of 4GB on Windows)
5961
60-
### Windows via Windows Explorer
62+
#### Windows via Windows Explorer
6163

6264
Open the File Explorer, right click on "This PC" and click on the menu item "Map network drive...".
6365

6466
1. In the Drive list, select a drive letter. (Any available letter will do.)
6567
2. In the Folder box, enter the URL logged by the Cryptomator CLI application.
6668
3. Select Finish.
6769

68-
### Linux via davfs2
70+
#### Linux via davfs2
6971

7072
First, you need to create a mount point for your vault:
7173

@@ -86,7 +88,7 @@ To unmount the vault, run:
8688
sudo umount /media/your/mounted/folder
8789
```
8890

89-
### macOS via AppleScript
91+
#### macOS via AppleScript
9092

9193
Mount the vault with:
9294
```sh

0 commit comments

Comments
 (0)