Big changes

This commit is contained in:
2022-04-14 00:35:06 +03:00
parent 5b218de55a
commit 9136f7ef3d
96 changed files with 1780 additions and 671 deletions

View File

@@ -1,18 +1,17 @@
local gears = require("gears")
local awful = require("awful")
local hotkeys_popup = require("awful.hotkeys_popup")
-- local hotkeys_popup = require("awful.hotkeys_popup")
require "bindings.mod"
require "config.apps"
require "config"
globalkeys =
gears.table.join(
awful.key(
{modkey},
"s",
hotkeys_popup.show_help,
{description = "show help", group = "awesome"}
),
-- awful.key(
-- {modkey},
-- "s",
-- hotkeys_popup.show_help,
-- {description = "show help", group = "awesome"}
-- ),
awful.key(
{modkey, "Control"},
"r",
@@ -297,6 +296,22 @@ globalkeys =
"Escape",
awful.tag.history.restore,
{description = "go back", group = "tag"}
),
awful.key(
{modkey},
".",
function()
awful.spawn("/usr/bin/emoji-picker")
end,
{description = "emoji picker", group = "launcher"}
),
awful.key(
{modkey, "Control"},
"w",
function()
toggle_window_buffers(awful.screen.focused())
end,
{description = "set workarea height to 200", group = "screen"}
)
)

View File

@@ -1,2 +1,4 @@
modkey = "Mod4"
require "bindings.global"
require "bindings.client"

View File

@@ -1 +0,0 @@
modkey = "Mod4"