keepass: add config
This commit is contained in:
parent
8290187234
commit
be5e7f8221
|
@ -0,0 +1,35 @@
|
|||
# KeePass Config
|
||||
|
||||
## Installed plugins
|
||||
|
||||
- [KeeOtp](https://keepass.info/plugins.html#keeotp)
|
||||
- [KeePassRPC](https://keepass.info/plugins.html#keepassrpc)
|
||||
|
||||
## Config
|
||||
|
||||
Manually merge the following into `KeePass.config.xml`:
|
||||
|
||||
```xml
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Configuration xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<MainWindow>
|
||||
<CloseButtonMinimizesWindow>true</CloseButtonMinimizesWindow>
|
||||
<EscAction>MinimizeToTray</EscAction>
|
||||
<MinimizeToTray>true</MinimizeToTray>
|
||||
<CopyUrlsInsteadOfOpening>true</CopyUrlsInsteadOfOpening>
|
||||
</MainWindow>
|
||||
<Security>
|
||||
<MasterKeyOnSecureDesktop>true</MasterKeyOnSecureDesktop>
|
||||
</Security>
|
||||
<PasswordGenerator>
|
||||
<UserProfiles>
|
||||
<Profile>
|
||||
<Name>Good</Name>
|
||||
<GeneratorType>CharSet</GeneratorType>
|
||||
<Length>30</Length>
|
||||
<CharSetRanges>ULDS_musB_</CharSetRanges>
|
||||
</Profile>
|
||||
</UserProfiles>
|
||||
</PasswordGenerator>
|
||||
</Configuration>
|
||||
```
|
Loading…
Reference in New Issue