custom.ron (1429B)
1 #![enable(implicit_some)] 2 #![enable(unwrap_newtypes)] 3 #![enable(unwrap_variant_newtypes)] 4 ( 5 default_album_art_path: None, 6 show_song_table_header: true, 7 draw_borders: true, 8 browser_column_widths: [0, 60, 40], 9 modal_backdrop: false, 10 preview_label_style: (), 11 preview_metadata_group_style: (modifiers: "Bold"), 12 tab_bar: ( 13 enabled: true, 14 active_style: (fg: "black", bg: "white"), 15 inactive_style: (), 16 ), 17 current_item_style: (bg: "blue"), 18 highlighted_item_style: (fg: "green", modifiers: "Bold"), 19 borders_style: (), 20 highlight_border_style: (), 21 symbols: (song: "\u{1f39c}", dir: "\u{1f5bf}", marker: "*", ellipsis: "..."), 22 progress_bar: ( 23 symbols: ["━", "●", "━"], 24 track_style: (fg: "black"), 25 elapsed_style: (fg: "white"), 26 thumb_style: (fg: "blue"), 27 ), 28 scrollbar: (symbols: ["", "", "", ""]), 29 song_table_format: [ 30 ( 31 prop: (kind: Property(Artist), 32 default: (kind: Text("Unknown")), 33 style: (fg: "blue") 34 ), 35 width: "30%", 36 alignment: Right, 37 ), 38 ( 39 prop: (kind: Property(Title), 40 default: (kind: Text("Unknown")) 41 ), 42 width: "70%", 43 ), 44 ], 45 layout: Split( 46 direction: Vertical, 47 panes: [ 48 ( 49 pane: Pane(TabContent), 50 size: "100%", 51 ), 52 ], 53 ), 54 header: ( 55 rows: [], 56 ), 57 browser_song_format: [ 58 ( 59 kind: Group([ 60 (kind: Property(Artist)), 61 (kind: Text(" - ")), 62 (kind: Property(Title)), 63 ]), 64 default: (kind: Property(Filename)) 65 ), 66 ], 67 ) 68