blob: 5ef17ef6612f1a378dd470e67491c39ed3764f7e (
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_window_rule(rule)
if hl.window_rule then
hl.window_rule(rule)
end
end
return {
apply_window_rule = apply_window_rule,
}
|