Update with mpris, Macchiato catppuccin colors and awesome_switcher
This commit is contained in:
parent
64e9b9a3cb
commit
8d5ee408cf
22 changed files with 1038 additions and 79 deletions
|
@ -5,6 +5,7 @@ local hotkeys_popup = require("awful.hotkeys_popup")
|
|||
local ruled = require("ruled")
|
||||
|
||||
local modkey = user_vars.modkey
|
||||
local switcher = require("src.modules.awesome_switcher")
|
||||
|
||||
return gears.table.join(
|
||||
awful.key(
|
||||
|
@ -48,14 +49,18 @@ return gears.table.join(
|
|||
end,
|
||||
{ description = "Focus previous client by index", group = "Client" }
|
||||
),
|
||||
awful.key(
|
||||
{ "Mod1" },
|
||||
"#23",
|
||||
function()
|
||||
awful.client.focus.byidx(1)
|
||||
end,
|
||||
{ description = "Focus next client by index", group = "Client" }
|
||||
),
|
||||
--awful.key(
|
||||
-- { "Mod1" },
|
||||
-- "#23",
|
||||
-- function()
|
||||
-- awful.client.focus.byidx(1)
|
||||
-- end,
|
||||
-- { description = "Focus next client by index", group = "Client" }
|
||||
--),
|
||||
awful.key({ "Mod1" }, "#23",
|
||||
function ()
|
||||
switcher.switch( 1, "Mod1", "Alt_L", "Shift", "Tab")
|
||||
end),
|
||||
awful.key(
|
||||
{ "Mod1", "Shift" },
|
||||
"#23",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue