Big changes
This commit is contained in:
@@ -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"}
|
||||
)
|
||||
)
|
||||
|
@@ -1,2 +1,4 @@
|
||||
modkey = "Mod4"
|
||||
|
||||
require "bindings.global"
|
||||
require "bindings.client"
|
@@ -1 +0,0 @@
|
||||
modkey = "Mod4"
|
Reference in New Issue
Block a user