Compare commits

...

2 Commits

Author SHA1 Message Date
78164cb4a4 changed the rules thing 2026-05-27 11:41:15 +01:00
48ab194fdb changed some binds and a variable name idk 2026-05-26 18:03:33 +01:00
2 changed files with 10 additions and 9 deletions

View File

@@ -25,7 +25,7 @@ hl.bind(mainMod .. "d", function()
end)
-- Open windows
local appBinds = {
local globalAppBinds = {
{ key = { "RETURN" }, dispatch = "kitty" },
{ key = { "f", "o" }, dispatch = "firefox" },
{ key = { "s" }, dispatch = "nemo" },
@@ -33,7 +33,7 @@ local appBinds = {
{ mod = subMod, key = { "SHIFT + s" }, dispatch = "grimblast copy area" },
}
for _, bind in ipairs(appBinds) do
for _, bind in ipairs(globalAppBinds) do
local modBind = bind.mod or mainMod
if bind.key[keybindIndex] then
hl.bind(modBind .. bind.key[keybindIndex], hl.dsp.exec_cmd(bind.dispatch))
@@ -89,7 +89,7 @@ hl.bind(mainMod .. "h", function()
-- 9 derived from 5 gap plus 3 border (8), so first pixel of window is 9
if pos == 9 then
-- If first window, then move to monitor to the left
hl.dispatch(hl.dsp.focus({ monitor = "-1" }))
hl.dispatch(hl.dsp.focus({ monitor = "+1" }))
else
-- If not the first window then go to the column to the left
hl.dispatch(hl.dsp.layout("move -col"))
@@ -104,7 +104,7 @@ hl.bind(mainMod .. "l", function()
-- Go back a window
hl.dispatch(hl.dsp.layout("move -col"))
-- Move to monitor to the right
hl.dispatch(hl.dsp.focus({ monitor = "+1" }))
hl.dispatch(hl.dsp.focus({ monitor = "-1" }))
end
end)

View File

@@ -27,18 +27,19 @@ hl.window_rule({
-- Define windows that float
local standardFloatingWindows = {
{ class = "^(xdg-desktop-portal-gtk)$" },
{ class = "^(firefox)$", title = "^(.*Save.*)" },
{ class = "xdg-desktop-portal-gtk" },
{ class = "org.pulseaudio.pavucontrol" },
{ class = "firefox", title = ".*Save.*" },
}
-- For every window that floats make a rule
for _, window in ipairs(standardFloatingWindows) do
hl.window_rule({
name = "float file selector",
name = ("float " .. window.class),
match = {
-- both are optional ig
class = window.class or "",
title = window.title or "",
class = ("^(" .. (window.class or "") .. ")$"),
title = ("^(" .. (window.title or "") .. ")"),
},
float = true,
animation = "popin 70%",