aboutsummaryrefslogtreecommitdiff
path: root/awesome
diff options
context:
space:
mode:
authorBlista Kanjo2021-10-29 03:05:37 -0400
committerBlista Kanjo2021-10-29 03:05:37 -0400
commitcd26ef17cf500b71a3881d81f501f6e4dff76685 (patch)
tree9339009c394d80946946debc5399603f6f6b949b /awesome
parentb203f01c6b78a4080ef9db4cdcfa3c110347d4c4 (diff)
change some keybinds and enabled toggle tag feature
Diffstat (limited to 'awesome')
-rw-r--r--awesome/rc.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/awesome/rc.lua b/awesome/rc.lua
index 72f58a2..ca29410 100644
--- a/awesome/rc.lua
+++ b/awesome/rc.lua
@@ -312,7 +312,7 @@ globalkeys = gears.table.join(
{description = "Launch Emoji Chooser", group = "launcher"}),
-- Clipboard Manager
- awful.key({ modkey }, "c", function () awful.spawn.easy_async_with_shell("xfce4-clipman-history") end,
+ awful.key({ modkey }, "space", function () awful.spawn.easy_async_with_shell("xfce4-clipman-history") end,
{description = "open clipboard history", group = "launcher"}),
-- awesome window manager Controls
@@ -459,8 +459,8 @@ for i = 1, 9 do
end
end,
{description = "view tag #"..i, group = "tag"}),
- --[[ -- Toggle tag display.
- awful.key({ modkey, "Control" }, "#" .. i + 9,
+ -- Toggle tag display.
+ awful.key({ modkey }, "#" .. i + 9,
function ()
local screen = awful.screen.focused()
local tag = screen.tags[i]
@@ -468,7 +468,7 @@ for i = 1, 9 do
awful.tag.viewtoggle(tag)
end
end,
- {description = "toggle tag #" .. i, group = "tag"}), ]]--
+ {description = "toggle tag #" .. i, group = "tag"}),
-- Move client to tag.
awful.key({ modkey, "Shift" }, "#" .. i + 9,
function ()