1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-01-31 07:03:36 +00:00
.dotfiles/configs/rmpc/config.ron
2025-01-01 17:26:36 -05:00

145 lines
4.1 KiB
Text

#![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,
"<C-A-Left>": NextTab,
"<C-A-Right>": PreviousTab,
">": NextTrack,
"<": PreviousTrack,
"<S-Right>": SeekForward,
"<S-Left>": 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>": Up,
"<Down>": Down,
"<Left>": Left,
"<Right>": Right,
"<C-k>": PaneUp,
"<C-j>": PaneDown,
"<C-h>": PaneLeft,
"<C-l>": PaneRight,
"<C-u>": UpHalf,
"<C-d>": DownHalf,
"N": PreviousResult,
"n": NextResult,
"<CR>": Add,
"A": AddAll,
"<Delete>": Delete,
"r": Rename,
"<Home>": Top,
"<End>": Bottom,
"<Space>": Select,
"<C-Space>": InvertSelection,
"<CR>": Confirm,
"i": FocusInput,
"/": EnterSearch,
"<C-c>": Close,
"<Esc>": Close,
"K": MoveUp,
"J": MoveDown,
},
queue: {
"D": DeleteAll,
"<CR>": Play,
"<C-s>": 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),
),
],
)