lazy push before updates
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user