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 -- apply the selected profile to the device cutils = require ("common-utils") log = Log.open_topic ("s-device") AsyncEventHook { name = "device/apply-profile", after = { "device/find-calling-profile", "device/find-stored-profile", "device/find-preferred-profile", "device/find-best-profile" }, interests = { EventInterest { Constraint { "event.type", "=", "select-profile" }, }, }, steps = { start = { next = "none", execute = function (event, transition) local device = event:get_subject () local profile = event:get_data ("selected-profile") local dev_name = device.properties ["device.name"] or "" if not profile then log:info (device, "No profile found to set on " .. dev_name) transition:advance () return end for p in device:iterate_params ("Profile") do local active_profile = cutils.parseParam (p, "Profile") if active_profile.index == tonumber(profile.index) then log:info (device, "Profile " .. profile.name .. " is already set on " .. dev_name) transition:advance () return end end local param = Pod.Object { "Spa:Pod:Object:Param:Profile", "Profile", index = tonumber(profile.index), } log:info (device, "Setting profile " .. profile.name .. " on " .. dev_name) device:set_param ("Profile", param) -- FIXME: add cancellability -- sync on the pipewire connection to ensure that the param -- has been configured on the remote device object Core.sync (function () transition:advance () end) end }, } }:register()