We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 95f56e1 + e8418c3 commit cba5babCopy full SHA for cba5bab
1 file changed
Scripts/bash/template-apply.sh
@@ -535,8 +535,13 @@ zathura)
535
;;
536
537
starship)
538
- PALETTE_FILE="$HOME/.cache/noctalia/starship-palette.toml"
539
- CONFIG_FILE="$HOME/.config/starship.toml"
+ # Check if the nested starship config exists first
+ if [ -f "$HOME/.config/starship/starship.toml" ]; then
540
+ CONFIG_FILE="$HOME/.config/starship/starship.toml"
541
+ else
542
+ # Fallback to the default path
543
+ CONFIG_FILE="$HOME/.config/starship.toml"
544
+ fi
545
546
# Check if the generated palette file exists
547
if [ ! -f "$PALETTE_FILE" ]; then
0 commit comments