Менеджер паролей pass. Tessen
Менеджер паролей pass. Tessen.
Содержание
1 Общая информация
- Репозиторий: https://github.com/ayushnix/tessen
- Работает в Wayland.
2 Конфигурация
1# vim:ft=sh
2# shellcheck disable=SC2148,SC2034
3#
4# configuration file for tessen
5# place this file in $XDG_CONFIG_HOME/tessen/config
6
7# the default pass program to use - pass or gopass
8pass_backend="gopass"
9
10# the default dmenu backend program to use - rofi, fuzzel, bemenu, rofi, or dmenu
11dmenu_backend="fuzzel"
12
13# leave it commented if you want the default behavior - the choice to either
14# autotype or copy should be presented in the menu
15# action="autotype"
16
17# config files for dmenu_backends should be specified AFTER specifying the
18# dmenu_backend in this config file
19# alternatively, use the command line arguments to specify the dmenu backend
20# while running tessen
21# fuzzel_config_file=""
22# tofi_config_file=""
23# rofi_config_file="$XDG_CONFIG_HOME/rofi/test.rasi"
24# wofi_config_file=""
25# wofi_style_file=""
26# wofi_color_file=""
27# yofi_config_file=""
28
29# the name of the key which will be used to decide the username
30# this can also be a simple regex such as (user|login)
31# userkey="(user|login)"
32# the name of the key which will be used to decide the url
33# this can also be a simple regex such as (url|website)
34# urlkey="(url|website)"
35# the name of the key which will be used to implement a custom autotype operation
36# this can also be a simple regex as such as (auto|type)
37# autotype_key="(autotype|type)"
38
39# the delay (in milliseconds) introduced between successive autotype operations
40# leave it commented to use the default value of 100ms
41# delay=""
42
43# the default web browser to open urls
44# use this only if xdg-open is either not installed on your system or you don't
45# want to use it
46# if this key is set, xdg-open will not be used even if it's installed
47# web_browser=""
48
49# whether to send notifications about copied data via notify-send
50# notify="true"