diff options
| author | Robert Günzler <r@gnzler.io> | 2020-12-07 19:19:05 +0100 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2021-01-21 19:39:11 +0100 |
| commit | 7faee33a14fa49005809d89d5e2d7d56e43fe70f (patch) | |
| tree | fd3bc07a8c3efedaa6a4704d5eb61ffd3aefb4b5 | |
| parent | 5836abb773b2b5e32ea4c1d2469ab0503bd50083 (diff) | |
aerc: update config for 0.5.2
| -rw-r--r-- | .config/aerc/aerc.conf | 29 |
1 files changed, 23 insertions, 6 deletions
diff --git a/.config/aerc/aerc.conf b/.config/aerc/aerc.conf index 8aaeccf..fa7b885 100644 --- a/.config/aerc/aerc.conf +++ b/.config/aerc/aerc.conf @@ -43,6 +43,11 @@ mouse-enabled=false # Default: yes new-message-bell=true +# Marker to show before a pinned tab's name. +# +# Default: ` +pinned-tab-marker='`' + # Describes the format string to use for the directory list # # Default: %n %>r @@ -55,13 +60,24 @@ dirlist-format=%n %>r # Example: "from -r date" # # Default: "" -sort=date +sort=-r date from # Moves to next message when the current message is deleted # # Default: false next-message-on-delete=true +# The directories where the stylesets are stored. It takes a colon-separated +# list of directories. +# +# default: /usr/share/aerc/stylesets/ +stylesets-dirs=/usr/share/aerc/stylesets/:$HOME/.confg/aerc/stylesets/ + +# Sets the styleset to use for the aerc ui elements. +# +# Default: default +styleset-name=default + [viewer] # # Specifies the pager to use when displaying emails. Note that some filters @@ -69,7 +85,8 @@ next-message-on-delete=true # pager which supports ANSI codes. # # Default: less -R -pager=less -g -i -M -R -w -X -s +# pager=less -g -i -M -R -s -S -w -X +pager=more # # If an email offers several versions (multipart), you can configure which @@ -151,18 +168,18 @@ subject,~^\[PATCH=awk -f /usr/share/aerc/filters/hldiff text/html=/usr/share/aerc/filters/html text/*=awk -f /usr/share/aerc/filters/plaintext #image/*=catimg -w $(tput cols) - -application/pdf=~/.config/aerc/filters/pdf +application/pdf=/home/robert/.config/aerc/filters/pdf [triggers] # # Triggers specify commands to execute when certain events occur. # # Example: -# new-email=exec notify-send "New email from %n" "%s"<Enter> +# new-email=exec notify-send "New email from %n" "%s" # # Executed when a new email arrives in the selected folder -new-email=exec notify-send -a aerc -i mail-client "New mail from %n" "%s"<Enter> +new-email=exec notify-send -a aerc "new mail from %n" "%s" [templates] # Templates are used to populate email bodies automatically. @@ -172,7 +189,7 @@ new-email=exec notify-send -a aerc -i mail-client "New mail from %n" "%s"<Enter> # list of directories. # # default: /usr/share/aerc/templates/ -template-dirs=/usr/share/aerc/templates/:/home/robert/.config/aerc/templates +template-dirs=/usr/share/aerc/templates/:$HOME/.config/aerc/templates # The template to be used for quoted replies. # |