diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2025-05-31 01:07:04 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2025-05-31 01:07:04 +0400 |
commit | 4d35abf62d12fa6f5877c201221f09eca620841c (patch) | |
tree | 09e2f22fffe7281b129bc1f89d5b5038e09eaa4e | |
parent | 5bf3c9383fba5e766c74fa0625eb1daf8b1b2885 (diff) |
config/shell/profile: prioritize firefox over qutebrowser
-rw-r--r-- | config/shell/profile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/shell/profile b/config/shell/profile index c9de99a..f993ac6 100644 --- a/config/shell/profile +++ b/config/shell/profile @@ -13,8 +13,8 @@ export XDG_BIN_DIR="$HOME/.local/bin" [ -x "$(command -v nvim)" ] && export EDITOR="nvim" [ -x "$(command -v alacritty)" ] && export TERMINAL="alacritty" [ -x "$(command -v st)" ] && export TERMINAL="st" -[ -x "$(command -v firefox)" ] && export BROWSER="firefox" [ -x "$(command -v qutebrowser)" ] && export BROWSER="qutebrowser" +[ -x "$(command -v firefox)" ] && export BROWSER="firefox" export MAKEFLAGS="-j8" # Reduce compile times |