add float rule to screenshare dialog, change fs behavior, change size of borders

This commit is contained in:
2026-08-10 19:37:22 -07:00
parent 57ff1ad019
commit 4e9d21e5e1
2 changed files with 6 additions and 5 deletions
+5 -5
View File
@@ -101,7 +101,7 @@ hl.config({
gaps_in = 4, gaps_in = 4,
gaps_out = 5, gaps_out = 5,
border_size = 1, border_size = 2,
col = { col = {
active_border = "rgba(0DB7D455)", active_border = "rgba(0DB7D455)",
@@ -123,7 +123,7 @@ hl.config({
inactive_opacity = 1.0, inactive_opacity = 1.0,
shadow = { shadow = {
enabled = true, enabled = false,
range = 4, range = 4,
render_power = 3, render_power = 3,
color = 0xee1a1a1a, color = 0xee1a1a1a,
@@ -132,7 +132,7 @@ hl.config({
blur = { blur = {
enabled = true, enabled = true,
xray = true, xray = true,
size = 3, size = 6,
passes = 1, passes = 1,
vibrancy = 0.1696, vibrancy = 0.1696,
}, },
@@ -224,7 +224,7 @@ hl.config({
-- See https://wiki.hypr.land/Configuring/Layouts/Scrolling-Layout/ for more -- See https://wiki.hypr.land/Configuring/Layouts/Scrolling-Layout/ for more
hl.config({ hl.config({
scrolling = { scrolling = {
fullscreen_on_one_column = true, fullscreen_on_one_column = false,
}, },
}) })
@@ -268,7 +268,7 @@ hl.bind(mainMod .. " + E", hl.dsp.exec_cmd(fileManager))
hl.bind(mainMod .. " + M", hl.dsp.exec_cmd("command -v hyprshutdown >/dev/null 2>&1 && hyprshutdown || hyprctl dispatch 'hl.dsp.exit()'")) hl.bind(mainMod .. " + M", hl.dsp.exec_cmd("command -v hyprshutdown >/dev/null 2>&1 && hyprshutdown || hyprctl dispatch 'hl.dsp.exit()'"))
hl.bind(mainMod .. " + SPACE", hl.dsp.window.float({ action = "toggle" })) hl.bind(mainMod .. " + SPACE", hl.dsp.window.float({ action = "toggle" }))
hl.bind(mainMod .. " + F", hl.dsp.window.fullscreen_state({ internal="1", client="1", action = "toggle"})) hl.bind(mainMod .. " + F", hl.dsp.window.fullscreen_state({ internal="1", client="1", layout_aware=true, action = "toggle"}))
hl.bind(mainMod .. " + SHIFT + Q", hl.dsp.window.close()) hl.bind(mainMod .. " + SHIFT + Q", hl.dsp.window.close())
-- change focus -- change focus
+1
View File
@@ -18,4 +18,5 @@ hl.window_rule({match = {title = "^(.*)(wants to save)$" }, flo
hl.window_rule({match = {title = "^(.*)(wants to open)$" }, center = true}) hl.window_rule({match = {title = "^(.*)(wants to open)$" }, center = true})
hl.window_rule({match = {title = "^(.*)(wants to open)$" }, float = true}) hl.window_rule({match = {title = "^(.*)(wants to open)$" }, float = true})
hl.window_rule({match = {class = "hyprland-share-picker" }, float = true})
hl.window_rule({match = {title = "(.*)(Settings)(.*)$" },float = true}) hl.window_rule({match = {title = "(.*)(Settings)(.*)$" },float = true})