From 3c0db2ae642d325c8a8c92f2060a48b1be1e62d9 Mon Sep 17 00:00:00 2001 From: thek4n Date: Wed, 16 Oct 2024 13:42:55 +0300 Subject: [PATCH] fix bash variables --- home/user/.config/bash/export | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/home/user/.config/bash/export b/home/user/.config/bash/export index 70be90c..8f0e061 100644 --- a/home/user/.config/bash/export +++ b/home/user/.config/bash/export @@ -21,7 +21,8 @@ export HISTTIMEFORMAT="%F %T " export HISTIGNORE="&:l[lsa\.]:[bf]g:exit:q:clear:c:history:h" export BROWSERCLI=w3m -test -z "$BROWSER" && export BROWSER=firefox +test -z "$BROWSER" && BROWSER=firefox +export BROWSER if [ -d "$HOME/.local/bin" ] ; then export PATH="$HOME/.local/bin:$PATH"