diff options
author | awy <awy@awy.one> | 2025-08-07 03:56:20 +0300 |
---|---|---|
committer | awy <awy@awy.one> | 2025-08-07 03:56:20 +0300 |
commit | e545fb5dc1fffc32d5ab0f4697aa2fcba5c8bee5 (patch) | |
tree | ab2ed42077706f22a0f1b5ef444d5df431c96066 /.config/rmpc/config.ron | |
parent | 397871484c0c4108d08cdadd959edacc09dfbdeb (diff) | |
download | hyprdots-e545fb5dc1fffc32d5ab0f4697aa2fcba5c8bee5.tar.gz |
rmpc cfg update
Diffstat (limited to '.config/rmpc/config.ron')
-rw-r--r-- | .config/rmpc/config.ron | 139 |
1 files changed, 68 insertions, 71 deletions
diff --git a/.config/rmpc/config.ron b/.config/rmpc/config.ron index 31ec749..fbd8c5c 100644 --- a/.config/rmpc/config.ron +++ b/.config/rmpc/config.ron @@ -107,111 +107,108 @@ tabs: [ ( name: "Queue", - border_type: None, pane: Split( - direction: Horizontal, + direction: Vertical, panes: [ ( - size: "40%", - borders: "RIGHT", + size: "100%", + borders: "NONE", pane: Split( - direction: Vertical, + borders: "NONE", + direction: Horizontal, panes: [ ( - size: "3", - pane: Pane(Lyrics), + size: "70%", + borders: "ALL", + pane: Pane(Queue), ), ( - size: "100%", - pane: Pane(AlbumArt), - ) - ], + size: "30%", + borders: "NONE", + pane: Split( + direction: Vertical, + panes: [ + ( + size: "75%", + borders: "ALL", + pane: Pane(AlbumArt), + ), + ( + size: "25%", + borders: "NONE", + pane: Split( + direction: Vertical, + panes: [ + ( + size: "100%", + pane: Pane(Lyrics), + ), + ] + ), + ), + ] + ), + ), + ] ), ), - ( - size: "60%", - pane: Pane(Queue), - ), ], ), ), ( name: "Directories", - border_type: None, - pane: Pane(Directories), + pane: Split( + direction: Horizontal, + panes: [(size: "100%", borders: "ALL", pane: Pane(Directories))], + ), ), ( name: "Artists", - border_type: None, - pane: Pane(Artists), + pane: Split( + direction: Horizontal, + panes: [(size: "100%", borders: "ALL", pane: Pane(Artists))], + ), ), ( name: "Album Artists", - border_type: None, - pane: Pane(AlbumArtists), + pane: Split( + direction: Horizontal, + panes: [(size: "100%", borders: "ALL", pane: Pane(AlbumArtists))], + ), ), ( name: "Albums", - border_type: None, - pane: Pane(Albums), + pane: Split( + direction: Horizontal, + panes: [(size: "100%", borders: "ALL", pane: Pane(Albums))], + ), ), ( name: "Playlists", - border_type: None, - pane: Pane(Playlists), + pane: Split( + direction: Horizontal, + panes: [(size: "100%", borders: "ALL", pane: Pane(Playlists))], + ), ), ( name: "Search", - border_type: None, - pane: Pane(Search), + pane: Split( + direction: Horizontal, + panes: [(size: "100%", borders: "ALL", pane: Pane(Search))], + ), ), ( - name: "Testing", - border_type: Single, + name: "Browser", pane: Split( direction: Horizontal, - panes: [ - ( - size: "40%", - pane: Pane(Queue), - ), - ( - size: "60%", - pane: Split( - direction: Vertical, - panes: [ - ( - size: "50%", - pane: Pane(Directories), - ), - ( - size: "50%", - pane: Split( - direction: Horizontal, - panes: [ - ( - size: "60%", - pane: Split( - direction: Vertical, - panes: [ - ( - size: "50%", - pane: Pane(Albums), - ), - ( - size: "50%", - pane: Pane(Artists), - ), - ], - ), - ), - ], - ), - ), - ], - ), - ), - ], + panes: [(size: "100%", borders: "ALL", pane: Pane(Browser(root_tag: "Artist")))], + ), + ), + ( + name: "Lyrics", + pane: Split( + direction: Horizontal, + panes: [(size: "100%", borders: "ALL", pane: Pane(Lyrics))], ), ), ], |