From e3a9edf5039692a35ef18b37925085e019760842 Mon Sep 17 00:00:00 2001 From: tiyn Date: Sun, 20 Nov 2022 20:49:22 +0100 Subject: [PATCH] flatpak: added programs to path --- .config/sxhkd/sxhkdrc | 6 ------ .profile | 3 +++ 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.config/sxhkd/sxhkdrc b/.config/sxhkd/sxhkdrc index 8621cb9..e7cc7ce 100644 --- a/.config/sxhkd/sxhkdrc +++ b/.config/sxhkd/sxhkdrc @@ -4,16 +4,10 @@ super + b $BROWSER super + f $TERMINAL -e $FILE -super + i - intellij-idea-ultimate-edition super + m thunderbird -super + p - $TERMINAL -e ncmpcpp super + shift + r dmenu_run -c -l 20 -super + s - startpagesearch super + F5 togglemonitor super + F6 diff --git a/.profile b/.profile index 799c986..9fb19d4 100644 --- a/.profile +++ b/.profile @@ -4,6 +4,9 @@ # Adds `~/.local/bin` and all subdirectories to $PATH export PATH="${PATH}:$(du "${HOME}/.local/bin/" | cut -f2 | tr '\n' ':' | sed 's/:*$//')" +# Add flatpak to path +export PATH="/var/lib/flatpak/exports/bin:${PATH}" + export BROWSER="firefox" export RTV_BROWSER="qutebrowser" export EDITOR="nvim"