chrome-beta

This commit is contained in:
Adam 2023-04-15 06:22:11 -04:00
parent c894d5decd
commit b2c0de6759
2 changed files with 3 additions and 3 deletions

View file

@ -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,

View file

@ -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"