Linux evo.fastest-server.com 5.14.0-284.1101.el9.tuxcare.11.els11.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 14 13:30:35 UTC 2026 x86_64
LiteSpeed
Server IP : 103.249.112.113 & Your IP : 216.73.217.135
Domains : 988 Domain
User : tanishks
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
wireplumber /
scripts /
device /
Delete
Unzip
Name
Size
Permission
Date
Action
apply-profile.lua
1.78
KB
-rw-r--r--
2025-10-10 14:43
apply-routes.lua
3.41
KB
-rw-r--r--
2025-10-10 14:43
automute-alsa-routes.lua
7.08
KB
-rw-r--r--
2025-10-10 14:43
autoswitch-bluetooth-profile.lua
14.97
KB
-rw-r--r--
2025-10-10 14:43
find-best-profile.lua
2.21
KB
-rw-r--r--
2025-10-10 14:43
find-best-routes.lua
2.49
KB
-rw-r--r--
2025-10-10 14:43
find-preferred-profile.lua
2.09
KB
-rw-r--r--
2025-10-10 14:43
find-voice-call-profile.lua
2.12
KB
-rw-r--r--
2025-10-10 14:43
select-profile.lua
720
B
-rw-r--r--
2025-10-10 14:43
select-routes.lua
4.9
KB
-rw-r--r--
2025-10-10 14:43
state-profile.lua
4.11
KB
-rw-r--r--
2025-10-10 14:43
state-routes.lua
11.61
KB
-rw-r--r--
2025-10-10 14:43
Save
Rename
-- WirePlumber -- -- Copyright © 2022 Collabora Ltd. -- -- SPDX-License-Identifier: MIT -- look for new devices and raise select-profile event. cutils = require ("common-utils") log = Log.open_topic ("s-device") SimpleEventHook { name = "device/select-profile", interests = { EventInterest { Constraint { "event.type", "=", "device-added" }, }, EventInterest { Constraint { "event.type", "=", "device-params-changed" }, Constraint { "event.subject.param-id", "=", "EnumProfile" }, }, }, execute = function (event) local source = event:get_source () local device = event:get_subject () source:call ("push-event", "select-profile", device, nil) end }:register()