mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-22 11:20:24 +01:00
Because our lua hooks don't expose the device-added callback we need to cache any calls to disable a feature and then apply it quietly when the device is actually added. Any other call can go straight through. Part-of: <https://gitlab.freedesktop.org/libinput/libinput/-/merge_requests/1249>
14 lines
276 B
Meson
14 lines
276 B
Meson
plugins = [
|
|
'10-example.lua',
|
|
'10-dwt.lua',
|
|
'10-logitech-mx-master-horiz-scroll.lua',
|
|
'10-pointer-go-faster.lua',
|
|
'10-pointer-go-slower.lua',
|
|
'10-delay-motion.lua',
|
|
'10-disable-feature.lua',
|
|
]
|
|
|
|
fs = import('fs')
|
|
foreach plugin : plugins
|
|
fs.copyfile(plugin)
|
|
endforeach
|