blob: d54b97c67edf7f74df0b546aadc155d8d2d754dc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
-- ==================================================
-- KoolDots (2026)
-- Project URL: https://github.com/LinuxBeginnings
-- License: GNU GPLv3
-- SPDX-License-Identifier: GPL-3.0-or-later
-- ==================================================
local function apply_layer_rule(rule)
if hl.layer_rule then
hl.layer_rule(rule)
end
end
return {
apply_layer_rule = apply_layer_rule,
}
|