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