Compare commits

...

3 Commits

Author SHA1 Message Date
fddcd38829 idk 2026-03-22 03:16:21 -07:00
96273dae5a add wireplumber config 2026-03-22 00:28:37 -07:00
fb2be7f84b idk 2026-03-21 20:48:32 -07:00
9 changed files with 1045 additions and 3 deletions

View File

@@ -150,6 +150,12 @@ trust_level = "trusted"
[projects."/home/sudacode/.config/mpv-modules/ModernZ"]
trust_level = "trusted"
[projects."/home/sudacode/.local/share/Anki2/addons21"]
trust_level = "trusted"
[projects."/home/sudacode/Documents"]
trust_level = "trusted"
[notice.model_migrations]
"gpt-5.3-codex" = "gpt-5.4"

View File

@@ -239,7 +239,7 @@
"iconCacheDir": "~/S/japanese/subminer-jellyfin-icons",
},
"logging": {
"level": "debug",
"level": "info",
},
"discordPresence": {
"enabled": true,
@@ -272,7 +272,7 @@
}, // Local immersion stats dashboard served on localhost and available as an in-app overlay.
"subtitleSidebar": {
"enabled": true,
"layout": "embedded",
// "layout": "embedded",
"toggleKey": "Backslash",
"pauseVideoOnHover": true,
"autoScroll": true,

View File

@@ -4,7 +4,7 @@ language=en
# set layout: "modern" or "modern-compact"
layout=modern
# set icon theme. accepts fluent or material
icon_theme=material
icon_theme=fluent
# set icon style. accepts mixed, filled, outline
icon_style=mixed
# font for the OSC (default: mpv-osd-symbols or the one set in mpv.conf)

View File

@@ -12,6 +12,7 @@ export XDG_SESSION_DESKTOP=Hyprland
export QT_AUTO_SCREEN_SCALE_FACTOR=1
export QT_WAYLAND_DISABLE_WINDOWDECORATION=1
export QT_QPA_PLATFORMTHEME=hyprqt6engine
export QT_STYLE_OVERRIDE=kvantum
export GTK_THEME=Ant-Dracula
export XDG_CONFIG_HOME=$HOME/.config
export COMPOSE_BAKE=true

View File

@@ -160,6 +160,7 @@
"format-muted": " {format_source}",
"format-source": "{volume}% ",
"format-source-muted": "",
"ignored-sinks": ["Easy Effects Sink"],
"format-icons": {
"headphone": " ",
"hands-free": "",

View File

@@ -175,6 +175,7 @@
"format-muted": "󰝟 {format_source}",
"format-source": "{volume}% ",
"format-source-muted": "",
"ignored-sinks": ["Easy Effects Sink"],
"format-icons": {
"headphone": "",
"hands-free": "󰋎",

View File

@@ -228,6 +228,7 @@
"format-muted": " {format_source}",
"format-source": "{volume}% ",
"format-source-muted": "",
"ignored-sinks": ["Easy Effects Sink"],
"format-icons": {
"headphone": "",
"hands-free": "",

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,23 @@
# AirPods-specific Bluetooth policy override.
# Keep the device on A2DP/AAC and avoid restoring stale route state.
wireplumber.settings = {
device.restore-routes = false
}
monitor.bluez.rules = [
{
matches = [
{
device.name = "bluez_card.18_3F_70_4E_02_CC"
}
]
actions = {
update-props = {
device.profile = "a2dp-sink"
bluez5.auto-connect = [ a2dp_sink ]
bluez5.a2dp.aac.bitratemode = 0
}
}
}
]