Compare commits

...

2 Commits

Author SHA1 Message Date
5d541a845a Add wireplumber configs 2025-03-29 23:04:45 -03:00
6a05fefc0e Add wireplumber configs 2025-03-29 23:04:35 -03:00
2 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,40 @@
# regular devices
monitor.alsa.rules = [
{
matches = [
{
# Matches all sources
node.name = "~alsa_input.*"
},
{
# Matches all sinks
node.name = "~alsa_output.*"
}
]
actions = {
update-props = {
session.suspend-timeout-seconds = 0
}
}
}
]
# bluetooth devices
monitor.bluez.rules = [
{
matches = [
{
# Matches all sources
node.name = "~bluez_input.*"
},
{
# Matches all sinks
node.name = "~bluez_output.*"
}
]
actions = {
update-props = {
session.suspend-timeout-seconds = 0
}
}
}
]

View File

@ -0,0 +1,14 @@
access.rules = [
{
matches = [
{
application.process.binary = discord
}
]
actions = {
update-props = {
default_permissions = "rx"
}
}
}
]