worf/examples/worf-warden
Alexander Mohr 0fdee55fbe improve formatting w/ nightly toolchain
nightly rustformat allows some
advanced formatting for strings and
imports.
Add a pipeline steps that validates through this.
2025-07-26 22:50:33 +02:00
..
src improve formatting w/ nightly toolchain 2025-07-26 22:50:33 +02:00
Cargo.toml improve formatting w/ nightly toolchain 2025-07-26 22:50:33 +02:00
Readme.md support custom auto typing fixes #91 2025-07-20 13:58:41 +02:00

Worf Warden

Simple password manager build upon these additional tools aside worf

The idea it taken from https://github.com/mattydebie/bitwarden-rofi/blob/master/bwmenu

Custom auto typing

  • Auto typing supports custom keys. Just pass user name with $U and pw with $P
    • I.e. the default is $U\t$P which is user, tab, password.
    • This is using ydotool to type, so see their documentation for key input details.

Example

~/.config/worf/warden

[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"

example