#How to visualize folder path in kitty terminal
15 messages · Page 1 of 1 (latest)
my goal is to visualize folder path if that helps
How to visualize folder path in kitty terminal
To change your bash prompt, see https://learn.omacom.io/2/the-omarchy-manual/95/prompt
It's recommend not to make changes to any files in ~/.local/share/omarchy/ as it will cause issues with future updates
Depends on the goal
@dawn berry - if I'm understanding correctly, looks like I would make any changes to the ~/.config/starship.toml file
and if i found a oh-my-posh theme i liked in TOML - then I should just be able to throw this in the file right?
@dawn berry additionally - i've installed fish and and want to have starship initialize it automaticall when I open my terminal (kitty)
i can't seem to find the best way to do that without messing with the omarchy defaults
never mind - looks like dropping the below into the .bashrc file worked!
if [[ $(ps --no-header --pid=$PPID --format=comm) != "fish" && -z ${BASH_EXECUTION_STRING} && ${SHLVL} == 1 ]] then shopt -q login_shell && LOGIN_OPTION='--login' || LOGIN_OPTION='' exec fish $LOGIN_OPTION fi
took way longer than it should've: