From 1424e3718d9298addb30664dbc23dbd932fa44d6 Mon Sep 17 00:00:00 2001 From: tux Date: Wed, 3 Sep 2025 18:24:57 +0530 Subject: [PATCH] chore(keys): update keybindings --- src/binds/client/keys.lua | 2 +- src/binds/global/keys.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/binds/client/keys.lua b/src/binds/client/keys.lua index 120ea21..f9c3b03 100644 --- a/src/binds/client/keys.lua +++ b/src/binds/client/keys.lua @@ -7,7 +7,7 @@ local modkey = mod.modkey client.connect_signal("request::default_keybindings", function() awful.keyboard.append_client_keybindings({ -- Client state management. - awful.key({ modkey }, "f", function(c) + awful.key({ modkey, mod.shift }, "f", function(c) c.fullscreen = not c.fullscreen c:raise() end, { description = "toggle fullscreen", group = "client" }), diff --git a/src/binds/global/keys.lua b/src/binds/global/keys.lua index e450ae8..8d3afd1 100644 --- a/src/binds/global/keys.lua +++ b/src/binds/global/keys.lua @@ -54,7 +54,7 @@ awful.keyboard.append_global_keybindings({ awful.spawn("GalaxyBudsClient") end, { description = "open galaxy buds client", group = "launcher" }), - awful.key({ modkey }, "t", function() + awful.key({ modkey }, "f", function() awful.spawn(apps.file_explorer) end, { description = "open file explorer", group = "launcher" }),