diff options
| author | awy <awy@awy.one> | 2025-11-06 16:11:48 +0300 |
|---|---|---|
| committer | awy <awy@awy.one> | 2025-11-06 16:11:48 +0300 |
| commit | 58072ad8efe1328924a8898de4d639b9795096a4 (patch) | |
| tree | 298d01929165e45db83a270f9679a37fb3269067 /.config/rmpc/config.ron | |
| parent | 0e8d81fb63457599ecc747a1df8c33d71e9c02c2 (diff) | |
| download | hyprdots-58072ad8efe1328924a8898de4d639b9795096a4.tar.gz | |
Diffstat (limited to '.config/rmpc/config.ron')
| -rw-r--r-- | .config/rmpc/config.ron | 26 |
1 files changed, 17 insertions, 9 deletions
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: ";")))], ), ), ( |