Track tagging scripts in external repository

This commit is contained in:
Felix Suchert 2023-03-30 10:57:50 +02:00
parent 7221f4e5ff
commit ad266e7ff2
Signed by: feliix42
GPG key ID: 24363525EA0E8A99
10 changed files with 11 additions and 6 deletions

3
.gitignore vendored
View file

@ -1,8 +1,5 @@
entropy/mail/.mbsyncrc
entropy/mail/.msmtprc
entropy/mail/neomutt/signature.txt
entropy/mail/neomutt/notmuch-hook.sh
entropy/mail/neomutt/whoami.muttrc
entropy/vpn/credentials.txt
entropy/vpn/openconnect.txt

3
.gitmodules vendored
View file

@ -13,3 +13,6 @@
[submodule "tycho/mail/neomutt/themes"]
path = tycho/mail/neomutt/themes
url = git@github.com:sheoak/neomutt-powerline-nerdfonts.git
[submodule "entropy/mail/neomutt/mailsettings"]
path = entropy/mail/neomutt/mailsettings
url = git@code.dummyco.de:feliix42/mailsettings.git

View file

@ -12,7 +12,7 @@ set record = =Sent
# NOTE: disabled for notmuch
# mailboxes "=Inbox" "=Trash" "=Sent" "=Drafts"
macro index \CS "<shell-escape>mbsync tu-dresden<enter>"
macro index \CS "<shell-escape>mbsync -a; ~/.config/neomutt/notmuch-hook.sh<enter>"
set signature = "~/.config/neomutt/signature.txt"

@ -0,0 +1 @@
Subproject commit 03d0a78203b5aa87c49ee84274cd90f45b767345

View file

@ -0,0 +1 @@
mailsettings/notmuch-hook.sh

View file

@ -0,0 +1 @@
mailsettings/signature.txt

View file

@ -0,0 +1 @@
mailsettings/whoami.muttrc

View file

@ -203,6 +203,7 @@ in
msmtp
neomutt urlview
notmuch
aspell # spell checking in mail
## Rust
rustup
cargo-flamegraph

View file

@ -263,7 +263,7 @@ for_window [title="zoom"] floating enable
bindsym $mod+c exec grimshot --notify save area
# quick access to mail
bindsym $mod+m exec 'alacritty -e neomutt -f "notmuch://?query=tag:unread"'
bindsym $mod+m exec 'alacritty -e neomutt -f "notmuch://?query=tag:unread and tag:inbox"'
bindsym $mod+x exec 'swaylock --screenshots --effect-blur 5x5 --effect-greyscale --fade-in 0.5'

View file

@ -77,7 +77,7 @@
"format": " {}",
"max-length": 10,
"interval": 60,
"exec": "notmuch count tag:unread",
"exec": "notmuch count tag:unread and tag:inbox",
"exec-if": "[ $(notmuch count tag:unread) != 0 ]",
"on-click": "alacritty -e neomutt -f 'notmuch://?query=tag:unread'"
}