update config
This commit is contained in:
+25
-18
@@ -33,22 +33,29 @@ input = {
|
|||||||
accel_speed = 0.0,
|
accel_speed = 0.0,
|
||||||
}
|
}
|
||||||
|
|
||||||
-- Rules let you match windows by app_id, title, or class and apply window-manager
|
|
||||||
-- settings. Set `apply_effects = false` to disable compositor effects (shadows,
|
|
||||||
-- transparency, rounded corners) on a matched window.
|
|
||||||
rules = {
|
rules = {
|
||||||
-- { app_id = "Gimp", floating = true, monitor = -1 },
|
{
|
||||||
-- { app_id = "firefox", tags = 1 << 8, floating = false, monitor = -1 },
|
app_id = "firefox",
|
||||||
--
|
floating = false,
|
||||||
-- -- `tags = "any"` places the window on whichever tag happens to be focused
|
can_float = true,
|
||||||
-- -- `monitor = "default"` sends the window to the current / primary monitor
|
fullscreen = false,
|
||||||
-- { app_id = "Alacritty", tags = "any", monitor = "default" },
|
can_fullscreen = true,
|
||||||
--
|
tags = "any", -- or a number to specify
|
||||||
-- -- `can_float = false` locks the window into tiling (prevents togglefloating)
|
monitor = "default", -- or specify a number
|
||||||
-- { app_id = "pavucontrol", floating = true, can_float = false },
|
apply_effects = {
|
||||||
--
|
rounding = true,
|
||||||
-- -- `title` matching works alongside or instead of app_id:
|
shadows = false,
|
||||||
-- -- { title = "Save As", floating = true, apply_effects = false },
|
transparency = false,
|
||||||
|
blur = false,
|
||||||
|
gaps = true,
|
||||||
|
smartgaps = false,
|
||||||
|
border = true,
|
||||||
|
sloppy_focus = false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
-- { app_id = "Gimp", floating = true, monitor = -1 },
|
||||||
|
-- { app_id = "firefox", tags = 1 << 8, floating = false, monitor = -1 },
|
||||||
}
|
}
|
||||||
|
|
||||||
monitors = {
|
monitors = {
|
||||||
@@ -74,7 +81,7 @@ effects = {
|
|||||||
corner_radius = 0, -- 0 = off, or a pixel value like 6, 10, 14
|
corner_radius = 0, -- 0 = off, or a pixel value like 6, 10, 14
|
||||||
|
|
||||||
shadows = {
|
shadows = {
|
||||||
shadows = true,
|
shadows = false,
|
||||||
shadow_radius = 24,
|
shadow_radius = 24,
|
||||||
shadow_offset_x = 0,
|
shadow_offset_x = 0,
|
||||||
shadow_offset_y = 8,
|
shadow_offset_y = 8,
|
||||||
@@ -90,7 +97,7 @@ effects = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
transparency = {
|
transparency = {
|
||||||
enabled = true,
|
enabled = false,
|
||||||
|
|
||||||
opacity_fullscreen = 1.0,
|
opacity_fullscreen = 1.0,
|
||||||
opacity_focused = 0.98,
|
opacity_focused = 0.98,
|
||||||
@@ -101,7 +108,7 @@ effects = {
|
|||||||
fullscreen_transparent = false,
|
fullscreen_transparent = false,
|
||||||
|
|
||||||
blur = {
|
blur = {
|
||||||
enabled = true,
|
enabled = false,
|
||||||
radius = 15,
|
radius = 15,
|
||||||
passes = 3,
|
passes = 3,
|
||||||
noise = 0.05,
|
noise = 0.05,
|
||||||
|
|||||||
Reference in New Issue
Block a user