Added $BROWSER global variable

This commit is contained in:
Lucien Cartier-Tilet 2020-03-25 12:33:19 +01:00
parent 82eab10cde
commit 457d1561db
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
1 changed files with 6 additions and 0 deletions

View File

@ -138,6 +138,12 @@
set -gx PATH <<generate-extra-paths()>> $PATH
#+END_SRC
In order to keep some other code clean, I set the ~$BROWSER~ variable so I
dont have to call my web browser directly but rather with this variable.
#+BEGIN_SRC fish
set -gx BROWSER firefox
#+END_SRC
Sometimes, software will rely on =SUDO_ASKPASS= to get a GUI from which it
can get the sudo password. So, lets declare it.
#+BEGIN_SRC fish