diff --git a/.bashrc b/.bashrc index 6478dfb..72a27cf 100644 --- a/.bashrc +++ b/.bashrc @@ -51,6 +51,10 @@ if [ -d "$HOME/Applications" ] ; then PATH="$HOME/Applications:$PATH" fi +if [ -d "/var/lib/flatpak/exports/bin/" ] ; + then PATH="/var/lib/flatpak/exports/bin/:$PATH" +fi + ### SETTING OTHER ENVIRONMENT VARIABLES if [ -z "$XDG_CONFIG_HOME" ] ; then export XDG_CONFIG_HOME="$HOME/.config" diff --git a/.config/fish/config.fish b/.config/fish/config.fish index 7bc53c2..47fba13 100644 --- a/.config/fish/config.fish +++ b/.config/fish/config.fish @@ -10,7 +10,7 @@ # First line removes the path; second line sets it. Without the first line, # your path gets massive and fish becomes very slow. set -e fish_user_paths -set -U fish_user_paths $HOME/.local/bin $HOME/Applications $fish_user_paths +set -U fish_user_paths $HOME/.local/bin $HOME/Applications /var/lib/flatpak/exports/bin/ $fish_user_paths ### EXPORT ### set fish_greeting # Supresses fish's intro message diff --git a/.zshrc b/.zshrc index 602d08c..924df24 100644 --- a/.zshrc +++ b/.zshrc @@ -43,6 +43,10 @@ if [ -d "$HOME/Applications" ] ; then PATH="$HOME/Applications:$PATH" fi +if [ -d "/var/lib/flatpak/exports/bin/" ] ; + then PATH="/var/lib/flatpak/exports/bin/:$PATH" +fi + ### SETTING OTHER ENVIRONMENT VARIABLES if [ -z "$XDG_CONFIG_HOME" ] ; then export XDG_CONFIG_HOME="$HOME/.config"