PortValhalla/scripts/Common/Config/bash/oh-my-posh.sh

11 lines
216 B
Bash
Raw Normal View History

#!/bin/bash
2023-04-05 09:11:09 +00:00
if ! grep "\boh-my-posh\b" ~/.bashrc
then
{
echo "";
echo "# Oh My Posh!";
echo 'eval "$(oh-my-posh init bash --config ~/.omp/manuel.omp.json)"'
} | tee -a ~/.bashrc;
fi;