summaryrefslogtreecommitdiff
path: root/rmpc/.config
diff options
context:
space:
mode:
authorseraphim <18ycm9tx@anonaddy.me>2026-08-23 18:07:29 +0700
committerseraphim <18ycm9tx@anonaddy.me>2026-08-23 18:07:29 +0700
commited3e8f6ec6929327ab19e512ffb0d8ece12ed5a8 (patch)
treef1a783af87d29b8d78ce20df5a485f92b8c32d5d /rmpc/.config
parent3c71645d355910b6998e97a1efca6f5a7c7608bc (diff)
reorganize directories, so everything in .config
Diffstat (limited to 'rmpc/.config')
-rw-r--r--rmpc/.config/rmpc/config.ron84
-rw-r--r--rmpc/.config/rmpc/theme.ron47
2 files changed, 0 insertions, 131 deletions
diff --git a/rmpc/.config/rmpc/config.ron b/rmpc/.config/rmpc/config.ron
deleted file mode 100644
index 765d13b..0000000
--- a/rmpc/.config/rmpc/config.ron
+++ /dev/null
@@ -1,84 +0,0 @@
-#![enable(implicit_some)]
-#![enable(unwrap_newtypes)]
-#![enable(unwrap_variant_newtypes)]
-
-(
- address: "127.0.0.1:6600",
- max_fps: 180,
-
- music_dir: "/mnt/giga/music",
- lyrics_dir: "/mnt/giga/music",
- theme: "~/.config/rmpc/theme.ron",
-
- album_art: (
- method: Sixel,
- max_size_px: (width: 1600, height: 1600),
- ),
- lyrics: (
- fetch: true,
- ),
- tabs: [
- (
- name: "Player",
- pane: Split(
- direction: Horizontal,
- panes: [
- (
- size: "40%",
- pane: Split(
- direction: Vertical,
- panes: [
- (size: "55%", pane: Pane(AlbumArt)),
- (size: "45%", pane: Pane(Lyrics)),
- ]
- )
- ),
- (
- size: "60%",
- pane: Split(
- direction: Vertical,
- panes: [
- (size: "1", pane: Pane(QueueHeader())),
- (size: "100%", pane: Pane(Queue)),
- ]
- )
- ),
- ],
- ),
- ),
- (name: "Files", pane: Pane(Directories)),
- (name: "Artists", pane: Pane(Artists)),
- (name: "Playlists", pane: Pane(Playlists)),
- (name: "Search", pane: Pane(Search)),
- ],
-
- keybinds: (
- global: {
- "1": SwitchToTab("Player"),
- "2": SwitchToTab("Files"),
- "3": SwitchToTab("Artists"),
- "4": SwitchToTab("Playlists"),
- "5": SwitchToTab("Search"),
- "/": SwitchToTab("Search"),
-
- "<Space>": TogglePause,
- "+": VolumeUp,
- "-": VolumeDown,
- "n": NextTrack,
- "b": PreviousTrack,
-
- "<Right>": SeekForward,
- "<Left>": SeekBack,
- ">": SeekForward,
- "<": SeekBack,
-
- "r": ToggleRepeat,
- "s": ToggleSingle,
- "c": ToggleConsume,
- "z": ToggleRandom,
- },
- navigation: {
- "Enter": Select,
- },
- ),
-)
diff --git a/rmpc/.config/rmpc/theme.ron b/rmpc/.config/rmpc/theme.ron
deleted file mode 100644
index f23418a..0000000
--- a/rmpc/.config/rmpc/theme.ron
+++ /dev/null
@@ -1,47 +0,0 @@
-#![enable(implicit_some)]
-#![enable(unwrap_newtypes)]
-#![enable(unwrap_variant_newtypes)]
-
-(
- show_song_table_header: true,
-
- song_table_format: [
- (
- prop: (kind: Property(Position)),
- width: "3",
- alignment: Right,
- label: "#"
- ),
- (
- prop: (kind: Property(Title), default: (kind: Property(Filename))),
- width: "45%",
- alignment: Left,
- label: "Title"
- ),
- (
- prop: (kind: Property(Artist), default: (kind: Text("Unknown"))),
- width: "35%",
- alignment: Left,
- label: "Artist"
- ),
- (
- prop: (kind: Property(Duration)),
- width: "15%",
- alignment: Right,
- label: "Time"
- ),
- ],
-
- text_color: None,
- borders_style: (fg: "#4c566a"),
-
- highlighted_item_style: (fg: "#81a1c1", modifiers: "Bold"),
- current_item_style: (fg: "#88c0d0", modifiers: "Bold | Reversed"),
-
- lyrics: (
- unplayed_style: (fg: "#4c566a"),
- played_style: (fg: "#88c0d0", modifiers: "Bold"),
- dir: "/mnt/giga/music/",
- fetch: true,
- ),
-)