aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2021-08-01 17:54:59 +0200
committerPatrick Spek <p.spek@tyil.nl>2021-08-14 12:01:21 +0200
commit45ee3c11e444f7dff30676233c1c5197e8466085 (patch)
tree96641ecb51e958794699c348197d17f5e13273c5
parent6d7131b0d90b96ff45747ca309d46cc69da1455f (diff)
Update tags
-rw-r--r--.config/awesome/rc.lua21
1 files changed, 10 insertions, 11 deletions
diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua
index a2786ac..91f4413 100644
--- a/.config/awesome/rc.lua
+++ b/.config/awesome/rc.lua
@@ -168,15 +168,14 @@ local tasklist_buttons = gears.table.join(
awful.client.focus.byidx(1)
end))
-awful.tag.add("work", { screen = screen.primary, layout = awful.layout.suit.tile })
-awful.tag.add("social", { screen = screen.primary, layout = awful.layout.suit.max })
-awful.tag.add("web", { screen = screen.primary, layout = awful.layout.suit.max })
-awful.tag.add("email", { screen = screen.primary, layout = awful.layout.suit.magnifier })
-awful.tag.add("fun", { screen = screen.primary, layout = awful.layout.suit.max })
-awful.tag.add("media", { screen = screen.primary, layout = awful.layout.suit.max })
-awful.tag.add("vms", { screen = screen.primary, layout = awful.layout.suit.tile })
-awful.tag.add("eight", { screen = screen.primary, layout = awful.layout.suit.tile })
-awful.tag.add("nine", { screen = screen.primary, layout = awful.layout.suit.tile })
+awful.tag.add("work", { screen = screen.primary, layout = awful.layout.suit.tile })
+awful.tag.add("social", { screen = screen.primary, layout = awful.layout.suit.max })
+awful.tag.add("web", { screen = screen.primary, layout = awful.layout.suit.max })
+awful.tag.add("email", { screen = screen.primary, layout = awful.layout.suit.magnifier })
+awful.tag.add("fun", { screen = screen.primary, layout = awful.layout.suit.max })
+awful.tag.add("media", { screen = screen.primary, layout = awful.layout.suit.max })
+awful.tag.add("vms", { screen = screen.primary, layout = awful.layout.suit.tile })
+awful.tag.add("scratch", { screen = screen.primary, layout = awful.layout.suit.tile })
sharedtaglist = screen.primary.tags
@@ -269,9 +268,9 @@ globalkeys = gears.table.join(
{description = "swap with next client by index", group = "client"}),
awful.key({ modkey, "Shift" }, "k", function () awful.client.swap.byidx( -1) end,
{description = "swap with previous client by index", group = "client"}),
- awful.key({ modkey, "Control" }, "j", function () awful.screen.focus_relative(-1) end,
+ awful.key({ modkey, "Control" }, "j", function () awful.screen.focus_bydirection("right") end,
{description = "focus the next screen", group = "screen"}),
- awful.key({ modkey, "Control" }, "k", function () awful.screen.focus_relative( 1) end,
+ awful.key({ modkey, "Control" }, "k", function () awful.screen.focus_bydirection("left") end,
{description = "focus the previous screen", group = "screen"}),
--awful.key({ modkey, }, "u", awful.client.urgent.jumpto,
-- {description = "jump to urgent client", group = "client"}),