Compare commits

1 Commits

Author SHA1 Message Date
5b7398de2c feat: mail finder 2026-05-06 23:03:51 +02:00
3 changed files with 3 additions and 2 deletions

0
scripts/launcher.py Executable file → Normal file
View File

View File

@@ -108,7 +108,7 @@ class NotmuchSearchProvider:
return hits
def render_hit(self, hit: NotmuchHit) -> Gtk.Widget:
text = Box(name="notmuch-text", orientation="v", spacing=0, h_expand=True)
text = Box(name="notmuch-text", orientation="v", spacing=0)
text.add(
Label(
label=hit.subject,
@@ -138,7 +138,7 @@ class NotmuchSearchProvider:
)
def render_saved(self, item: SavedSearch) -> Gtk.Widget:
text = Box(name="notmuch-text", orientation="v", spacing=0, h_expand=True)
text = Box(name="notmuch-text", orientation="v", spacing=0)
text.add(
Label(label=item.name, name="notmuch-saved-name", h_align="start")
)

View File

@@ -73,6 +73,7 @@
#notmuch-date {
font-size: 11px;
opacity: 0.6;
min-width: 90px;
}
#notmuch-saved-name {