"Silverblue Tip - Run commands anywhere"
TIP |
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"
done
| add [ -c toolbox-name ] to run in a non default toolbox |