From b2c0de6759678429650529ed227c64a947672d26 Mon Sep 17 00:00:00 2001 From: Adam <24621027+WhiteDopeOnPunk@users.noreply.github.com> Date: Sat, 15 Apr 2023 06:22:11 -0400 Subject: [PATCH] chrome-beta --- .config/awesome/binds/global.lua | 4 ++-- .config/awesome/rc.lua | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.config/awesome/binds/global.lua b/.config/awesome/binds/global.lua index 597d011..e4a1c05 100644 --- a/.config/awesome/binds/global.lua +++ b/.config/awesome/binds/global.lua @@ -8,9 +8,9 @@ globalkeys = Gears.table.join( Awful.key({ Modkey, }, "h", function () Awful.screen.focus_relative(-1) end, {description = "focus previous screen", group = "screen"}), Awful.key({ Modkey, }, "w", function () Awful.spawn(Browser) end, - {description = "open firefox", group = "launcher"}), + {description = "open browser", group = "launcher"}), Awful.key({ Modkey, "Shift" }, "w", function () Awful.spawn(Browser2) end, - {description = "open brave", group = "launcher"}), + {description = "open browser2", group = "launcher"}), Awful.key({ Modkey, }, "e", function () Awful.spawn(Editor_cmd) end, {description = "open editor", group = "launcher"}), Awful.key({ Modkey, "Shift" }, "e", function () Awful.spawn("thunderbird") end, diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 24a0ce4..f48eaa3 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -4,7 +4,7 @@ Terminal = "kitty" Editor = "nvim" Editor_cmd = Terminal .. " -e " .. Editor Browser = "firefox-developer-edition" -Browser2 = "brave-nightly" +Browser2 = "google-chrome-beta" Music = "spotify-launcher" Modkey = "Mod4"