diff options
Diffstat (limited to '.config')
| -rw-r--r-- | .config/aerc/aerc.conf | 6 | ||||
| -rw-r--r-- | .config/rmpc/config.ron | 26 |
2 files changed, 23 insertions, 9 deletions
diff --git a/.config/aerc/aerc.conf b/.config/aerc/aerc.conf index d738f08..ee8d522 100644 --- a/.config/aerc/aerc.conf +++ b/.config/aerc/aerc.conf @@ -15,6 +15,12 @@ icon-deleted= # icon-replied=📝 # icon-flagged=🚩 # icon-deleted=🗑️ +# index-columns=date<=,name<20,flags>=,subject<*,notmuch>= +# column-notmuch= \ +# {{- (map .Labels \ +# (exclude .Folder) \ +# (exclude "replied|passed|attachment|flagged|unread|draft") \ +# | join ",") -}} [statusline] diff --git a/.config/rmpc/config.ron b/.config/rmpc/config.ron index 2d73e08..58b2f98 100644 --- a/.config/rmpc/config.ron +++ b/.config/rmpc/config.ron @@ -29,9 +29,10 @@ "<Tab>": NextTab, "<S-Tab>": PreviousTab, "1": SwitchToTab("Queue"), - "2": SwitchToTab("Directories"), - "3": SwitchToTab("Artists"), - "4": SwitchToTab("Albums"), + // "2": SwitchToTab("Directories"), + "2": SwitchToTab("Artists"), + "3": SwitchToTab("Albums"), + "4": SwitchToTab("Genres"), "5": SwitchToTab("Playlists"), "6": SwitchToTab("Search"), "q": Quit, @@ -154,25 +155,32 @@ ], ), ), + // ( + // name: "Directories", + // pane: Split( + // direction: Horizontal, + // panes: [(size: "100%", borders: "ALL", pane: Pane(Directories))], + // ), + // ), ( - name: "Directories", + name: "Artists", pane: Split( direction: Horizontal, - panes: [(size: "100%", borders: "ALL", pane: Pane(Directories))], + panes: [(size: "100%", borders: "ALL", pane: Pane(Artists))], ), ), ( - name: "Artists", + name: "Albums", pane: Split( direction: Horizontal, - panes: [(size: "100%", borders: "ALL", pane: Pane(Artists))], + panes: [(size: "100%", borders: "ALL", pane: Pane(Albums))], ), ), ( - name: "Albums", + name: "Genres", pane: Split( direction: Horizontal, - panes: [(size: "100%", borders: "ALL", pane: Pane(Albums))], + panes: [(size: "100%", borders: "ALL", pane: Pane(Browser(root_tag: "genre", separator: ";")))], ), ), ( |