refactor: update copyq configuration with clipboard checking disabled, unfocus behavior changed, and screen capture prevention enabled; feat: add new eww configuration file with example widget and window definitions; refactor: update hyprland autostart commands, replace Telegram with AyuGram, add easymove submap, and adjust workspace rules; feat: introduce hyprsunset configuration file for automatic gamma and temperature adjustments; chore: extend privacy tagging rules to include AyuGram and SimpleX desktop applications; refactor: optimize muza script by removing redundant sleep calls and adjusting terminal launch sequence; refactor: improve toggle_proxy script with process killing function and silent operation; refactor: adjust rmpc layout to allocate 72% space for queue and 28% for cava visualization; feat: update rmpc theme with new album art, modified color scheme, and added tabs pane; feat: add keyboard navigation bindings for rofi launcher mode switching and paging; feat: expand power mode menu with CPU frequency options and integrate cpupower controls; feat: implement h/j/k/l row navigation keybindings for rofi power menu; feat: reconfigure power mode menu layout to 3 columns and add vertical navigation keybindings; feat: add row navigation keybindings to rofi recorder menu style; refactor: update swaync notification styles with revised button borders, selection colors, and hover effects; feat: add custom submap display module to waybar for active hyprland submaps; refactor: modify waybar styling with updated background colors and new module borders; chore: update bluetooth alias from bluetuith to bluetui in shell configuration
220 lines
8.2 KiB
Plaintext
220 lines
8.2 KiB
Plaintext
#![enable(implicit_some)]
|
|
#![enable(unwrap_newtypes)]
|
|
#![enable(unwrap_variant_newtypes)]
|
|
(
|
|
default_album_art_path: "/home/greg/Pictures/Fetch/levi.jpg",
|
|
show_song_table_header: false,
|
|
draw_borders: true,
|
|
format_tag_separator: " | ",
|
|
browser_column_widths: [20, 38, 42],
|
|
background_color: None,
|
|
text_color: None,
|
|
header_background_color: None,
|
|
modal_background_color: None,
|
|
modal_backdrop: false,
|
|
preview_label_style: (fg: "yellow"),
|
|
preview_metadata_group_style: (fg: "yellow", modifiers: "Bold"),
|
|
tab_bar: (
|
|
enabled: true,
|
|
active_style: (fg: "white", bg: "blue", modifiers: "Bold"),
|
|
inactive_style: (),
|
|
),
|
|
highlighted_item_style: (fg: "blue", modifiers: "Bold"),
|
|
current_item_style: (fg: "white", bg: "blue", modifiers: "Bold"),
|
|
borders_style: (fg: "yellow"),
|
|
highlight_border_style: (fg: "blue"),
|
|
symbols: (
|
|
song: " ",
|
|
dir: " ",
|
|
playlist: " ",
|
|
marker: " ",
|
|
ellipsis: "...",
|
|
song_style: (fg: "cyan", modifiers: None),
|
|
dir_style: (fg: "yellow"),
|
|
playlist_style: (fg: "magenta"),
|
|
),
|
|
level_styles: (
|
|
info: (fg: "cyan", bg: "blue"),
|
|
warn: (fg: "yellow", bg: "black"),
|
|
error: (fg: "red", bg: "black"),
|
|
debug: (fg: "light_green", bg: "black"),
|
|
trace: (fg: "magenta", bg: "black"),
|
|
),
|
|
progress_bar: (
|
|
symbols: ["🬋", " ", "⠔"],
|
|
track_style: (fg: "blue"),
|
|
elapsed_style: (fg: "blue"),
|
|
thumb_style: (fg: "blue"),
|
|
),
|
|
scrollbar: (
|
|
symbols: ["", "█", "", ""],
|
|
// symbols: ["│", "█", "▲", "▼"],
|
|
track_style: (fg: "black"),
|
|
ends_style: (fg: "black"),
|
|
thumb_style: (fg: "magenta"),
|
|
),
|
|
song_table_format: [
|
|
(
|
|
prop: (kind: Property(Artist),
|
|
default: (kind: Text("<empty>"), style: (fg: "yellow")),
|
|
style: (fg: "yellow"),
|
|
),
|
|
width: "20%",
|
|
),
|
|
(
|
|
prop: (kind: Property(Title),
|
|
default: (kind: Property(Filename), style: (fg: "white")),
|
|
style: (fg: "white"),
|
|
),
|
|
width: "70%",
|
|
),
|
|
(
|
|
label: "Time",
|
|
prop: (kind: Property(Duration),
|
|
default: (kind: Text("-")),
|
|
style: (fg: "magenta"),
|
|
),
|
|
width: "10%",
|
|
alignment: Right,
|
|
),
|
|
],
|
|
components: {},
|
|
layout: Split(
|
|
direction: Vertical,
|
|
panes: [
|
|
(
|
|
size: "4",
|
|
pane: Split(
|
|
direction: Horizontal,
|
|
panes: [
|
|
(
|
|
size: "10",
|
|
pane: Pane(AlbumArt),
|
|
),
|
|
(
|
|
size: "99%",
|
|
pane: Split(
|
|
direction: Vertical,
|
|
panes: [
|
|
(
|
|
size: "5",
|
|
pane: Pane(Header),
|
|
),
|
|
(
|
|
size: "1",
|
|
pane: Pane(Property(content: [
|
|
(
|
|
kind: Property(Song(Artist)), style: (fg: "green", modifiers: "Bold"),
|
|
default: (kind: Text(""), style: (modifiers: "Bold")),
|
|
),
|
|
(
|
|
kind: Text(" - "), style: (modifiers: "Bold"),
|
|
),
|
|
(
|
|
kind: Property(Song(Title)), style: (fg: "green", modifiers: "Bold"),
|
|
default: (
|
|
kind: Property(Song(Filename)), style: (modifiers: "Bold"),
|
|
default: (
|
|
kind: Text("<silence>"), style: (modifiers: "Bold"),
|
|
)
|
|
),
|
|
),
|
|
])),
|
|
),
|
|
(
|
|
size: "1",
|
|
pane: Pane(ProgressBar),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
]
|
|
),
|
|
),
|
|
(
|
|
size: "3",
|
|
pane: Pane(Tabs), // Changed from TabBar to Tabs
|
|
),
|
|
(
|
|
size: "100%",
|
|
pane: Pane(TabContent),
|
|
),
|
|
],
|
|
),
|
|
header: (
|
|
rows: [
|
|
(
|
|
left: [
|
|
(kind: Property(Status(StateV2(playing_label: " Playing", paused_label: " Paused", stopped_label: " Stopped"))), style: (fg: "yellow", modifiers: "Bold")),
|
|
],
|
|
center: [
|
|
(
|
|
kind: Property(Song(Album)), style: (fg: "yellow", modifiers: "Bold"),
|
|
default: (kind: Text(""), style: (modifiers: "Bold")),
|
|
),
|
|
],
|
|
right: [
|
|
(kind: Property(Widget(ScanStatus)), style: (fg: "blue")),
|
|
(kind: Property(Widget(Volume)), style: (fg: "blue"))
|
|
]
|
|
),
|
|
(
|
|
left: [
|
|
(kind: Property(Status(Elapsed))),
|
|
(kind: Text(" / ")),
|
|
(kind: Property(Status(Duration))),
|
|
],
|
|
center: [
|
|
],
|
|
right: [
|
|
(kind: Text("[ ")),
|
|
(kind: Property(Status(RepeatV2(
|
|
on_label: "", off_label: "",
|
|
on_style: (fg: "blue", modifiers: "Bold"), off_style: (fg: "yellow", modifiers: "Bold"))))),
|
|
(kind: Text(" | ")),
|
|
(kind: Property(Status(RandomV2(
|
|
on_label: "", off_label: "",
|
|
on_style: (fg: "blue", modifiers: "Bold"), off_style: (fg: "yellow", modifiers: "Bold"))))),
|
|
(kind: Text(" | ")),
|
|
(kind: Property(Status(ConsumeV2(
|
|
on_label: "", off_label: "", oneshot_label: "",
|
|
on_style: (fg: "blue", modifiers: "Bold"), off_style: (fg: "yellow", modifiers: "Bold"))))),
|
|
(kind: Text(" | ")),
|
|
(kind: Property(Status(SingleV2(
|
|
on_label: "", off_label: "",
|
|
on_style: (fg: "blue", modifiers: "Bold"), off_style: (fg: "yellow", modifiers: "Bold"))))),
|
|
(kind: Text(" ]")),
|
|
]
|
|
),
|
|
],
|
|
),
|
|
browser_song_format: [
|
|
(
|
|
kind: Group([
|
|
(kind: Property(Track)),
|
|
(kind: Text(" ")),
|
|
])
|
|
),
|
|
(
|
|
kind: Group([
|
|
(kind: Property(Artist)),
|
|
(kind: Text(" - ")),
|
|
(kind: Property(Title)),
|
|
]),
|
|
default: (kind: Property(Filename))
|
|
),
|
|
],
|
|
lyrics: (
|
|
timestamp: false
|
|
),
|
|
cava: (
|
|
bar_symbols: ['▁', '▂', '▃', '▄', '▅', '▆', '▇', '█'],
|
|
inverted_bar_symbols: ['▔', '🮂', '🮃', '▀', '🮄', '🮅', '🮆', '█'],
|
|
|
|
bar_width: 1, // width of a single bar in columns
|
|
bar_spacing: 1, // free space between bars in columns
|
|
orientation: Bottom,
|
|
bar_color: Single("blue"),
|
|
),
|
|
)
|