Skip to content

Commit

Permalink
Setting hidden configuration option in bookmark file.
Browse files Browse the repository at this point in the history
  • Loading branch information
dkocher committed Dec 28, 2024
1 parent 1278480 commit 8f92794
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions tutorials/hidden_properties.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,16 +103,31 @@ defaults delete ch.sudo.cyberduck <property>
:::::


## Using connection profiles
## In `.cyberduckprofile` Connection Profiles

You can override defaults in specific [connection profiles](../protocols/profiles/index.md) only affecting connections that use the profile.

1. Open the `.cyberduckprofile` in a text editor.
1. Open the `.cyberduckprofile` file in a text editor.
2. Add a child element to `<dict>` with a `key` named `Properties` and the configuration options inside an `array` as follows:

```{code-block}
<key>Properties</key>
<array>
<string>property=value</string>
</array>
```
```

## In `.duck` Bookmark Files

You can override defaults in specific [bookmarks](../cyberduck/bookmarks.md) only affecting a single connection.

1. Open the `.duck` file in a text editor.
2. Add a child element to `<dict>` with a `key` named `Custom` and the configuration options inside an `dict` as follows:

```{code-block}
<key>Custom</key>
<dict>
<key>property</key>
<string>value</string>
</dict>
```

0 comments on commit 8f92794

Please sign in to comment.