Files
dotfiles/hypr/hyprland/windowrules.lua

33 lines
1.1 KiB
Lua

--██ ██ ██ ███ ██ ████▄ ▄████▄ ██ ██ █████▄ ██ ██ ██ ██████ ▄█████
--██ ▄█▄ ██ ██ ██ ▀▄██ ██ ██ ██ ██ ██ ▄█▄ ██ ██▄▄██▄ ██ ██ ██ ██▄▄ ▀▀▀▄▄▄
-- ▀██▀██▀ ██ ██ ██ ████▀ ▀████▀ ▀██▀██▀ ██ ██ ▀████▀ ██████ ██▄▄▄▄ █████▀
-- Fix some dragging issues with XWayland
hl.window_rule({
match = {
class = "^$",
title = "^$",
xwayland = 1,
float = 0,
fullscreen = 0,
pin = 0,
},
no_focus = true,
})
-- Prevent apps from auto-maximizing themselves
hl.window_rule({
match = {
class = ".*",
},
suppress_event = "maximize",
})
-- 97% opacity when focused, 90% when unfocused
hl.window_rule({
match = {
class = ".*",
},
opacity = "0.97 0.9",
})