From dda8497f3e1b92f7bb022c5cc81b8a4db3ce2ee7 Mon Sep 17 00:00:00 2001 From: tux Date: Mon, 2 Dec 2024 08:54:00 +0530 Subject: [PATCH] feat(awesomeWM): add key binding for galaxy-buds-client --- pkgs/awesome/awesome/binds/global/keys.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/awesome/awesome/binds/global/keys.lua b/pkgs/awesome/awesome/binds/global/keys.lua index b636079..1accf6e 100644 --- a/pkgs/awesome/awesome/binds/global/keys.lua +++ b/pkgs/awesome/awesome/binds/global/keys.lua @@ -50,6 +50,10 @@ awful.keyboard.append_global_keybindings({ awful.spawn("discord") end, { description = "open discord", group = "launcher" }), + awful.key({ modkey }, "g", function() + awful.spawn("GalaxyBudsClient") + end, { description = "open galaxy buds client", group = "launcher" }), + awful.key({ modkey }, "t", function() awful.spawn(apps.file_explorer) end, { description = "open file explorer", group = "launcher" }),