mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-07 21:42:16 -06:00
feat: playing around with mpd and rmpc
This commit is contained in:
parent
c359f738ab
commit
8a06bb05fe
7 changed files with 491 additions and 33 deletions
204
modules/home/cli/fun/rmpc/config/catppuccin-macchiato.ron
Normal file
204
modules/home/cli/fun/rmpc/config/catppuccin-macchiato.ron
Normal file
|
|
@ -0,0 +1,204 @@
|
|||
#![enable(implicit_some)]
|
||||
#![enable(unwrap_newtypes)]
|
||||
#![enable(unwrap_variant_newtypes)]
|
||||
(
|
||||
show_song_table_header: false,
|
||||
draw_borders: true,
|
||||
browser_column_widths: [20, 38, 42],
|
||||
background_color: "#2e3440",
|
||||
modal_backdrop: true,
|
||||
text_color: "#d8dee9",
|
||||
header_background_color: "#2e3440",
|
||||
modal_background_color: "#2e3440",
|
||||
preview_label_style: (fg: "#b48ead"),
|
||||
preview_metadata_group_style: (fg: "#81a1c1"),
|
||||
song_table_album_separator: None,
|
||||
tab_bar: (
|
||||
enabled: true,
|
||||
active_style: (fg: "#2e3440", bg: "#81A1C1", modifiers: "Bold"),
|
||||
inactive_style: (fg: "#d8dee9", bg: "#2e3440"),
|
||||
),
|
||||
highlighted_item_style: (fg: "#a3be8c", modifiers: "Bold"),
|
||||
current_item_style: (fg: "#2e3440", bg: "#81a1c1", modifiers: "Bold"),
|
||||
borders_style: (fg: "#81a1c1", modifiers: "Bold"),
|
||||
highlight_border_style: (fg: "#81a1c1"),
|
||||
symbols: (song: " ", dir: " ", playlist: " ", marker: "* ", ellipsis: "...",
|
||||
song_style: (fg: "#81a1c1"), dir_style: (fg: "#81a1c1")
|
||||
),
|
||||
progress_bar: (
|
||||
symbols: [" ", "█", "█", " ", " "],
|
||||
track_style: (fg: "#1e2030"),
|
||||
elapsed_style: (fg: "blue"),
|
||||
thumb_style: (fg: "blue"),
|
||||
),
|
||||
scrollbar: (
|
||||
symbols: ["│", "█", "▲", "▼"],
|
||||
track_style: (),
|
||||
ends_style: (),
|
||||
thumb_style: (fg: "blue"),
|
||||
),
|
||||
song_table_format: [
|
||||
(
|
||||
prop: (kind: Property(Artist),
|
||||
default: (kind: Text("Unknown"))
|
||||
),
|
||||
width: "20%",
|
||||
),
|
||||
(
|
||||
prop: (kind: Property(Title),
|
||||
default: (kind: Text("Unknown"))
|
||||
),
|
||||
width: "35%",
|
||||
),
|
||||
(
|
||||
prop: (kind: Property(Album), style: (fg: "white"),
|
||||
default: (kind: Text("Unknown Album"), style: (fg: "white"))
|
||||
),
|
||||
width: "30%",
|
||||
),
|
||||
(
|
||||
prop: (kind: Property(Duration),
|
||||
default: (kind: Text("-"))
|
||||
),
|
||||
width: "15%",
|
||||
alignment: Right,
|
||||
),
|
||||
],
|
||||
layout: Split(
|
||||
direction: Vertical, panes: [
|
||||
(size: "3", pane: Pane(Tabs)),
|
||||
(size: "4", borders: "ALL", pane: Component("custom-header")),
|
||||
(size: "100%", borders: "NONE", pane: Pane(TabContent)),
|
||||
(size: "3", borders: "TOP | BOTTOM", pane: Pane(ProgressBar)),
|
||||
]),
|
||||
header: (rows: []),
|
||||
browser_song_format: [
|
||||
(kind: Group([
|
||||
(kind: Property(Track)),
|
||||
(kind: Text(" ")),
|
||||
])),
|
||||
(kind: Group([
|
||||
(kind: Property(Artist)),
|
||||
(kind: Text(" - ")),
|
||||
(kind: Property(Title)),
|
||||
]), default: (kind: Property(Filename)))
|
||||
],
|
||||
level_styles: (
|
||||
info: (fg: "#a3be8c", bg: "#2e3440"),
|
||||
warn: (fg: "#ebcb8b", bg: "#2e3440"),
|
||||
error: (fg: "#bf616a", bg: "#2e3440"),
|
||||
debug: (fg: "#d08770", bg: "#2e3440"),
|
||||
trace: (fg: "#b48ead", bg: "#2e3440"),
|
||||
),
|
||||
components: {
|
||||
"custom_song_table_header": Split(borders: "ALL", direction: Horizontal, panes: [
|
||||
(size: "5", pane: Pane(Property(content: [
|
||||
(kind: Text(" "), style: (fg: "#81a1c1")),
|
||||
], align: Left))
|
||||
),
|
||||
(size: "21%", pane: Pane(Property(content: [
|
||||
(kind: Text("Artist "), style: (fg: "#d8dee9")),
|
||||
(kind: Text(""), style: (fg: "#81a1c1"))
|
||||
], align: Left))
|
||||
),
|
||||
(size: "39%", pane: Pane(Property(content: [
|
||||
(kind: Text("Title "), style: (fg: "#d8dee9")),
|
||||
(kind: Text(""), style: (fg: "#81a1c1"))
|
||||
], align: Left))
|
||||
),
|
||||
(size: "33%", pane: Pane(Property(content: [
|
||||
(kind: Text("Album "), style: (fg: "#d8dee9")),
|
||||
(kind: Text(""), style: (fg: "#81a1c1"))
|
||||
], align: Left))
|
||||
),
|
||||
(size: "7%", pane: Pane(Property(content: [
|
||||
(kind: Text("Length "), style: (fg: "#d8dee9")),
|
||||
(kind: Text(" "), style: (fg: "#81a1c1"))
|
||||
], align: Right))
|
||||
),
|
||||
(size: "1", pane: Pane(Property(content: [
|
||||
(kind: Text(" "), style: (fg: "#81a1c1")),
|
||||
], align: Left))
|
||||
),
|
||||
]),
|
||||
"custom-header": Split(direction: Horizontal, panes: [
|
||||
(size: "33%", pane: Split(direction: Vertical, panes: [
|
||||
(size: "100%", pane: Pane(Property(content: [
|
||||
(kind: Text(""), style: (fg: "#81a1c1", modifiers: "Bold")),
|
||||
(kind: Property(Status(StateV2(playing_label: " ", paused_label: " ", stopped_label: " "))),style: (fg: "#d8dee9")),
|
||||
(kind: Text(" "), style: (fg: "#81a1c1", modifiers: "Bold")),
|
||||
(kind: Property(Widget(ScanStatus)), style: (fg: "#d8dee9", modifiers: "Bold"))
|
||||
], align: Left))
|
||||
),
|
||||
(size: "100%", pane: Pane(Property(content: [
|
||||
(kind: Text("[ "),style: (fg: "#81a1c1", modifiers: "Bold")),
|
||||
(kind: Property(Status(Elapsed)),style: (fg: "#d8dee9")),
|
||||
(kind: Text(" / "),style: (fg: "#81a1c1", modifiers: "Bold")),
|
||||
(kind: Property(Status(Duration)),style: (fg: "#d8dee9")),
|
||||
(kind: Text(" | "),style: (fg: "#81a1c1", modifiers: "Bold")),
|
||||
(kind: Property(Status(Bitrate)),default: (kind: Text(" ")),style: (fg: "#d8dee9")),
|
||||
(kind: Text(" kbps"),style: (fg: "#81a1c1")),
|
||||
(kind: Text(" ]"),style: (fg: "#81a1c1", modifiers: "Bold"))
|
||||
], align: Left))
|
||||
),
|
||||
])
|
||||
),
|
||||
(size: "34%", pane: Split(direction: Vertical, panes: [
|
||||
(size: "100%", pane: Pane(Property(content: [
|
||||
(kind: Property(Song(Title)), style: (fg: "#d8dee9",modifiers: "Bold"),
|
||||
default: (kind: Property(Song(Filename)), style: (fg: "#d8dee9",modifiers: "Bold")))
|
||||
], align: Center))
|
||||
),
|
||||
(size: "100%", pane: Pane(Property(content: [
|
||||
(kind: Property(Song(Artist)), style: (fg: "#88c0d0"),
|
||||
default: (kind: Text("Unknown Artist"), style: (fg: "#88c0d0"))),
|
||||
(kind: Text(" - "), style: (fg: "#d8dee9")),
|
||||
(kind: Property(Song(Album)),style: (fg: "#81a1c1" ),
|
||||
default: (kind: Text("Unknown Album"), style: (fg: "#81a1c1")))
|
||||
], align: Center))
|
||||
),
|
||||
])
|
||||
),
|
||||
(size: "33%", pane: Split(direction: Vertical, panes: [
|
||||
(size: "100%", pane: Pane(Property(content: [
|
||||
(kind: Text(" "), style: (fg: "#81a1c1", modifiers: "Bold")),
|
||||
(kind: Property(Status(Volume)), style: (fg: "#d8dee9")),
|
||||
(kind: Text("% "), style: (fg: "#81a1c1", modifiers: "Bold"))
|
||||
], align: Right))
|
||||
),
|
||||
(size: "100%", pane: Pane(Property(content: [
|
||||
(kind: Text("[ "),style: (fg: "#81a1c1", modifiers: "Bold")),
|
||||
(kind: Property(Status(QueueLength())),style: (fg: "#d8dee9")),
|
||||
(kind: Text(" | "),style: (fg: "#81a1c1", modifiers: "Bold")),
|
||||
(kind: Property(Status(QueueTimeTotal(separator: " "))),style: (fg: "#d8dee9")),
|
||||
(kind: Text(" | "),style: (fg: "#81a1c1", modifiers: "Bold")),
|
||||
(kind: Property(Status(RepeatV2(on_label: "", off_label: "",
|
||||
on_style: (fg: "#d8dee9", modifiers: "Bold"), off_style: (fg: "#4c566a", modifiers: "Bold"))))),
|
||||
(kind: Text(" | "),style: (fg: "#81a1c1", modifiers: "Bold")),
|
||||
(kind: Property(Status(RandomV2(on_label: "", off_label: "",
|
||||
on_style: (fg: "#d8dee9", modifiers: "Bold"), off_style: (fg: "#4c566a", modifiers: "Bold"))))),
|
||||
(kind: Text(" | "),style: (fg: "#81a1c1", modifiers: "Bold")),
|
||||
(kind: Property(Status(ConsumeV2(on_label: "", off_label: "", oneshot_label: "",
|
||||
on_style: (fg: "#d8dee9", modifiers: "Bold"), off_style: (fg: "#4c566a", modifiers: "Bold"))))),
|
||||
(kind: Text(" | "),style: (fg: "#81a1c1", modifiers: "Bold")),
|
||||
(kind: Property(Status(SingleV2(on_label: "", off_label: "", oneshot_label: "", off_oneshot_label: "",
|
||||
on_style: (fg: "#d8dee9", modifiers: "Bold"), off_style: (fg: "#4c566a", modifiers: "Bold"))))),
|
||||
(kind: Text(" ]"),style: (fg: "#81a1c1", modifiers: "Bold")),
|
||||
], align: Right))
|
||||
),
|
||||
])
|
||||
),
|
||||
])
|
||||
},
|
||||
cava: (
|
||||
bar_symbols: ['▁', '▂', '▃', '▄', '▅', '▆', '▇', '█'],
|
||||
bar_width: 1, bar_spacing: 1,
|
||||
bg_color: "#2e3440",
|
||||
bar_color: Gradient({
|
||||
0: "#5e81ac",
|
||||
33: "#81a1c1",
|
||||
67: "#88c0d0",
|
||||
100: "#8fbcbb",
|
||||
})
|
||||
),
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue