"Silverblue Tip - Run commands anywhere"
Do you find yourself regularly running utilities on your host system as well as in your toolbox? Just put this in your ~/.bashrc: |
for bin in fzf nvim code ranger anki meld poedit;
do
type -P $bin >/dev/null 2>&1 || alias $bin="toolbox run $bin" (1)
done
1 | add [ -c toolbox-name ] to run in a non default toolbox |