* auto type now supports inserting a totp key with $T * configuration allows setting a different type tool * improve documentation
1.5 KiB
1.5 KiB
Worf Warden
Simple password manager build upon these additional tools aside worf
- rbw
-
- pinentry is required to show a dialog show password entry
- As worf warden
- ydotool
- ydotool is just the defaults, other tools can be configured via
--typing-cmd
or using this key in the config file.
- ydotool is just the defaults, other tools can be configured via
The idea it taken from https://github.com/mattydebie/bitwarden-rofi/blob/master/bwmenu
Custom auto typing
Custom key strokes are supported for auto typing.
For example this can be used for some websites like PayPal,
where <enter>
after the username must be typed instead of <tab>
Special variables:
$U
-- Username$P
-- Password$T
-- Two factor$S
-- Sleep in milliseconds_
-- All underscores are removed and used to make the string more readable
The default is $U\t$P
which is user, tab, password.
As the string is passed to the typing tool, see their documentation for special chars.
Configuration
The location of the configuration file follows the same rules as worf itself.
typing_cmd = "ydotool"
typing_cmd_args = ["type"]
[custom_auto_types]
# This will use User, enter, password for the demo entry.
# You can use the id or the label as key, where id has higher precedence.
Demo = "$U\n$P"
# Will sleep 500ms before typing password
# Any underscore will be ignored
Delayed = "$U_\n_$S_500_$P"