1
0
Fork 0

keepass: add config

This commit is contained in:
Alan Faubert 2020-01-20 22:27:05 -05:00
parent 8290187234
commit be5e7f8221
1 changed files with 35 additions and 0 deletions

35
keepass/README.md Normal file
View File

@ -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>
```