1#![enable(implicit_some)]2#![enable(unwrap_newtypes)]3#![enable(unwrap_variant_newtypes)]4(5 address: "127.0.0.1:6600",6 password: None,7 theme: None,8 cache_dir: None,9 on_song_change: None,10 volume_step: 5,11 scrolloff: 0,12 wrap_navigation: false,13 enable_mouse: true,14 status_update_interval_ms: 1000,15 select_current_song_on_change: false,16 album_art: (17 method: Auto,18 max_size_px: (width: 1200, height: 1200),19 disabled_protocols: ["http://", "https://"],20 vertical_align: Center,21 horizontal_align: Center,22 ),23 keybinds: (24 global: {25 ":": CommandMode,26 ",": VolumeDown,27 "s": Stop,28 ".": VolumeUp,29 "<Tab>": NextTab,30 "<S-Tab>": PreviousTab,31 "1": SwitchToTab("Queue"),32 "2": SwitchToTab("Directories"),33 "3": SwitchToTab("Artists"),34 "4": SwitchToTab("Album Artists"),35 "5": SwitchToTab("Albums"),36 "6": SwitchToTab("Playlists"),37 "7": SwitchToTab("Search"),38 "q": Quit,39 ">": NextTrack,40 "p": TogglePause,41 "<": PreviousTrack,42 "f": SeekForward,43 "z": ToggleRepeat,44 "x": ToggleRandom,45 "c": ToggleConsume,46 "v": ToggleSingle,47 "b": SeekBack,48 "~": ShowHelp,49 "I": ShowCurrentSongInfo,50 "O": ShowOutputs,51 "P": ShowDecoders,52 },53 navigation: {54 "k": Up,55 "j": Down,56 "h": Left,57 "l": Right,58 "<Up>": Up,59 "<Down>": Down,60 "<Left>": Left,61 "<Right>": Right,62 "<C-k>": PaneUp,63 "<C-j>": PaneDown,64 "<C-h>": PaneLeft,65 "<C-l>": PaneRight,66 "<C-u>": UpHalf,67 "N": PreviousResult,68 "a": Add,69 "A": AddAll,70 "r": Rename,71 "n": NextResult,72 "g": Top,73 "<Space>": Select,74 "<C-Space>": InvertSelection,75 "G": Bottom,76 "<CR>": Confirm,77 "i": FocusInput,78 "J": MoveDown,79 "<C-d>": DownHalf,80 "/": EnterSearch,81 "<C-c>": Close,82 "<Esc>": Close,83 "K": MoveUp,84 "D": Delete,85 },86 queue: {87 "D": DeleteAll,88 "<CR>": Play,89 "<C-s>": Save,90 "a": AddToPlaylist,91 "d": Delete,92 "i": ShowInfo,93 "C": JumpToCurrent,94 },95 ),96 search: (97 case_sensitive: false,98 mode: Contains,99 tags: [100 (value: "any", label: "Any Tag"),101 (value: "artist", label: "Artist"),102 (value: "album", label: "Album"),103 (value: "albumartist", label: "Album Artist"),104 (value: "title", label: "Title"),105 (value: "filename", label: "Filename"),106 (value: "genre", label: "Genre"),107 ],108 ),109 artists: (110 album_display_mode: SplitByDate,111 album_sort_by: Date,112 ),113 tabs: [114 (115 name: "Queue",116 border_type: None,117 pane: Split(118 direction: Horizontal,119 panes: [(size: "40%", pane: Pane(AlbumArt)), (size: "60%", pane: Pane(Queue))],120 ),121 ),122 (123 name: "Directories",124 border_type: None,125 pane: Pane(Directories),126 ),127 (128 name: "Artists",129 border_type: None,130 pane: Pane(Artists),131 ),132 (133 name: "Album Artists",134 border_type: None,135 pane: Pane(AlbumArtists),136 ),137 (138 name: "Albums",139 border_type: None,140 pane: Pane(Albums),141 ),142 (143 name: "Playlists",144 border_type: None,145 pane: Pane(Playlists),146 ),147 (148 name: "Search",149 border_type: None,150 pane: Pane(Search),151 ),152 ],153)