feat(wezterm): add linux compositor specific settings

This commit is contained in:
Price Hiller 2022-09-05 17:34:26 -05:00
parent 0d2345a0f9
commit a99c5ef311

View File

@ -0,0 +1,9 @@
local os = require("os")
local linux_config = {}
if os.getenv("HYPRLAND_INSTANCE_SIGNATURE") then
linux_config.window_background_opacity = 0.70
end
return linux_config