From ebb0139dbe6f51f1a66074fdfcfeea8d7e70faf2 Mon Sep 17 00:00:00 2001 From: Xavier Logerais Date: Fri, 17 Jan 2025 09:03:19 +0000 Subject: [PATCH] =?UTF-8?q?feat(profile):=20Am=C3=A9lioration=20de=20la=20?= =?UTF-8?q?gestions=20des=20applications=20par=20d=C3=A9faut?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- profile.d/apps | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/profile.d/apps b/profile.d/apps index a7bc59a..3376aec 100644 --- a/profile.d/apps +++ b/profile.d/apps @@ -8,7 +8,9 @@ if (command -v nvim &>/dev/null); then fi # PAGER -export PAGER=less +if (command -v less &>/dev/null); then + export PAGER=less +fi # MANPAGER if (command -v nvim &>/dev/null); then @@ -18,7 +20,11 @@ elif (command -v bat &>/dev/null); then fi # TERMINAL -export TERMINAL=kitty +if (command -v kitty &>/dev/null); then + export TERMINAL=kitty +fi # BROWSER -export BROWSER=firefox +if (command -v firefox &>/dev/null); then + export BROWSER=firefox +fi