lazy push before updates

This commit is contained in:
Noella
2025-12-30 13:23:54 -07:00
parent 44ab8019bc
commit 34b678e020
30 changed files with 727 additions and 208 deletions

View File

@@ -71,15 +71,6 @@ function _M.get(clientkeys, clientbuttons)
titlebars_enabled = false,
},
},
{
rule = { instance = "Discord" },
properties = {
screen = 1,
tag = RC.tags[6],
titlebars_enabled = false,
},
},
}
return _R

View File

@@ -1,5 +1,6 @@
local awful = require("awful")
local beautiful = require("beautiful")
local titlebar = require("deco.titlebar")
-- Signal function to execute when a new client appears.
client.connect_signal("manage", function(c)
@@ -9,6 +10,7 @@ client.connect_signal("manage", function(c)
end
end)
client.connect_signal("request::titlebars", titlebar)
client.connect_signal("focus", function(c)
c.border_color = beautiful.border_focus
end)

View File

@@ -6,21 +6,21 @@ function _M.get()
local _T = {}
local tags = {
"󰎤 Terminal",
"󰎧 Web",
"󰎪 Code",
"󰎭 Junk",
"󰎱 Music",
"󰎳 Chat",
"Terminal",
"Web",
"Code",
"Junk",
"Music",
"Chat",
}
local layouts = {
RC.layouts[0],
RC.layouts[1],
RC.layouts[2],
RC.layouts[3],
RC.layouts[3],
RC.layouts[3],
RC.layouts[4],
RC.layouts[4],
RC.layouts[4],
}
awful.screen.connect_for_each_screen(function(s)

View File

@@ -1,8 +1,13 @@
local awful = require("awful")
local _M = {}
function _M.get()
local _V = {}
awful.spawn.with_shell("picom -b")
awful.spawn.with_shell("nm-applet")
_V = {
terminal = "alacritty",
editor = os.getenv("EDITOR") or "nvim",