#![enable(implicit_some)] #![enable(unwrap_newtypes)] #![enable(unwrap_variant_newtypes)] ( address: "127.0.0.1:6600", password: None, theme: Some("neralie"), cache_dir: None, on_song_change: None, volume_step: 5, scrolloff: 0, wrap_navigation: false, enable_mouse: true, status_update_interval_ms: 1000, select_current_song_on_change: false, album_art: ( method: Auto, max_size_px: (width: 600, height: 600), disabled_protocols: ["http://", "https://"], ), keybinds: ( global: { ":": CommandMode, ",": VolumeDown, ".": VolumeUp, "p": TogglePause, "s": Stop, "q": Quit, "": NextTab, "": PreviousTab, ">": NextTrack, "<": PreviousTrack, "": SeekForward, "": SeekBack, "z": ToggleRepeat, "x": ToggleRandom, "c": ToggleConsume, "v": ToggleSingle, "`": ShowHelp, "?": ShowCurrentSongInfo, "O": ShowOutputs, "P": ShowDecoders, "1": SwitchToTab("Queue"), "2": SwitchToTab("Directories"), "3": SwitchToTab("Album Artists"), "4": SwitchToTab("Albums"), "5": SwitchToTab("Playlists"), "6": SwitchToTab("Search"), }, navigation: { "k": Up, "j": Down, "h": Left, "l": Right, "": Up, "": Down, "": Left, "": Right, "": PaneUp, "": PaneDown, "": PaneLeft, "": PaneRight, "": UpHalf, "": DownHalf, "N": PreviousResult, "n": NextResult, "": Add, "A": AddAll, "": Delete, "r": Rename, "": Top, "": Bottom, "": Select, "": InvertSelection, "": Confirm, "i": FocusInput, "/": EnterSearch, "": Close, "": Close, "K": MoveUp, "J": MoveDown, }, queue: { "D": DeleteAll, "": Play, "": Save, "a": AddToPlaylist, "d": Delete, "i": ShowInfo, "C": JumpToCurrent, }, ), search: ( case_sensitive: false, mode: Contains, tags: [ (value: "any", label: "Any Tag"), (value: "artist", label: "Artist"), (value: "album", label: "Album"), (value: "albumartist", label: "Album Artist"), (value: "title", label: "Title"), (value: "filename", label: "Filename"), (value: "genre", label: "Genre"), ], ), artists: ( album_display_mode: SplitByDate, album_sort_by: Date, ), tabs: [ ( name: "Queue", border_type: None, pane: Split( direction: Horizontal, panes: [(size: "40%", pane: Pane(AlbumArt)), (size: "60%", pane: Pane(Queue))], ), ), ( name: "Directories", border_type: None, pane: Pane(Directories), ), ( name: "Artists", border_type: None, pane: Pane(AlbumArtists), ), ( name: "Albums", border_type: None, pane: Pane(Albums), ), ( name: "Playlists", border_type: None, pane: Pane(Playlists), ), ( name: "Search", border_type: None, pane: Pane(Search), ), ], )