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 tabs: [108 (109 name: "Queue",110 border_type: None,111 pane: Split(112 direction: Horizontal,113 panes: [(size: "40%", pane: Pane(AlbumArt)), (size: "60%", pane: Pane(Queue))],114 ),115 ),116 (117 name: "Directories",118 border_type: None,119 pane: Pane(Directories),120 ),121 (122 name: "Artists",123 border_type: None,124 pane: Pane(Artists),125 ),126 (127 name: "Album Artists",128 border_type: None,129 pane: Pane(AlbumArtists),130 ),131 (132 name: "Albums",133 border_type: None,134 pane: Pane(Albums),135 ),136 (137 name: "Playlists",138 border_type: None,139 pane: Pane(Playlists),140 ),141 (142 name: "Search",143 border_type: None,144 pane: Pane(Search),145 ),146 ],147)