From 6b9bb0e61dd549f5d7b2b09c2e9a651d0a6b3527 Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Fri, 19 Jun 2026 07:15:31 +0200 Subject: [PATCH] Ajouter tessen et maildir-rank-addr MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit tessen : interface wayland pour pass, backend fuzzel. maildir-rank-addr : complétion d'adresses aerc depuis ~/Mail. Co-Authored-By: Claude Sonnet 4.6 --- .../.config/maildir-rank-addr/config | 14 ++++++ tessen/.config/tessen/config | 50 +++++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 maildir-rank-addr/.config/maildir-rank-addr/config create mode 100644 tessen/.config/tessen/config diff --git a/maildir-rank-addr/.config/maildir-rank-addr/config b/maildir-rank-addr/.config/maildir-rank-addr/config new file mode 100644 index 0000000..8932438 --- /dev/null +++ b/maildir-rank-addr/.config/maildir-rank-addr/config @@ -0,0 +1,14 @@ +maildir = "~/Mail" +addresses = [ + "benjamin.bertrand@opyte.org", +] +filters = [ + "no-reply", + "noreply", + "newsletter", + "mailer-daemon", + "postmaster", + "bounce", + "@.*\\.mailer\\.", +] +outputpath = "~/.cache/maildir-rank-addr/addressbook.tsv" diff --git a/tessen/.config/tessen/config b/tessen/.config/tessen/config new file mode 100644 index 0000000..8209236 --- /dev/null +++ b/tessen/.config/tessen/config @@ -0,0 +1,50 @@ +# vim:ft=sh +# shellcheck disable=SC2148,SC2034 +# +# configuration file for tessen +# place this file in $XDG_CONFIG_HOME/tessen/config + +# the default pass program to use - pass or gopass +pass_backend="pass" + +# the default dmenu backend program to use - rofi, fuzzel, bemenu, rofi, or dmenu +dmenu_backend="fuzzel" + +# leave it commented if you want the default behavior - the choice to either +# autotype or copy should be presented in the menu +# action="autotype" + +# config files for dmenu_backends should be specified AFTER specifying the +# dmenu_backend in this config file +# alternatively, use the command line arguments to specify the dmenu backend +# while running tessen +# fuzzel_config_file="" +# tofi_config_file="" +# rofi_config_file="$XDG_CONFIG_HOME/rofi/config.rasi" +# wofi_config_file="" +# wofi_style_file="" +# wofi_color_file="" +# yofi_config_file="" + +# the name of the key which will be used to decide the username +# this can also be a simple regex such as (user|login) +# userkey="(user|login)" +# the name of the key which will be used to decide the url +# this can also be a simple regex such as (url|website) +# urlkey="(url|website)" +# the name of the key which will be used to implement a custom autotype operation +# this can also be a simple regex as such as (auto|type) +# autotype_key="(autotype|type)" + +# the delay (in milliseconds) introduced between successive autotype operations +# leave it commented to use the default value of 100ms +# delay="" + +# the default web browser to open urls +# use this only if xdg-open is either not installed on your system or you don't +# want to use it +# if this key is set, xdg-open will not be used even if it's installed +# web_browser="" + +# whether to send notifications about copied data via notify-send +notify="true"