From f09044947e650000a1f04de7a43d82ba93270ad8 Mon Sep 17 00:00:00 2001 From: AramJonghu Date: Sun, 14 Jun 2026 21:28:09 +0200 Subject: [PATCH] firefox -> ungoogled chromium --- modules/binds.lua | 2 +- modules/env.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/binds.lua b/modules/binds.lua index ec2480e..bf901a2 100644 --- a/modules/binds.lua +++ b/modules/binds.lua @@ -6,7 +6,7 @@ hl.bind("SUPER + Q", hl.dsp.window.close()) hl.bind("SUPER + M", hl.dsp.exit()) hl.bind("SUPER + RETURN", hl.dsp.exec_cmd("ghostty")) hl.bind("SUPER + E", hl.dsp.exec_cmd("dolphin")) -hl.bind("SUPER + B", hl.dsp.exec_cmd("firefox")) +hl.bind("SUPER + B", hl.dsp.exec_cmd("chromium")) hl.bind("SUPER + H", hl.dsp.focus({ direction = "l" })) hl.bind("SUPER + L", hl.dsp.focus({ direction = "r" })) diff --git a/modules/env.lua b/modules/env.lua index ee55bd3..702bf31 100644 --- a/modules/env.lua +++ b/modules/env.lua @@ -1,5 +1,5 @@ hl.env("ZSH", "/usr/share/oh-my-zsh/") -hl.env("BROWSER", "firefox") +hl.env("BROWSER", "chromium") hl.env("TERM", "tmux-256color") hl.env("VISUAL", "nvim") hl.env("EDITOR", "nvim")