mirror of
https://github.com/marcogll/omarchy_setup.git
synced 2026-01-13 21:35:16 +00:00
docs: update and improve Readme.md in Spanish
Restore the comprehensive Spanish version of the `Readme.md` and add a new section with instructions for installing the Meslo font, which is required for the `oh-my-posh` theme to render correctly. The new section is located in the "Troubleshooting" area and provides the necessary command (`oh-my-posh font install meslo`) to ensure a correct setup. The rest of the document has been reviewed to ensure it is complete and accurately reflects the script's functionality.
This commit is contained in:
@@ -125,16 +125,26 @@ aur_install_packages() {
|
||||
return 1
|
||||
fi
|
||||
|
||||
local -a base_flags=(--noconfirm --needed --noeditmenu --nodiffmenu --nocleanmenu)
|
||||
local -a base_flags=(--noconfirm --needed)
|
||||
AUR_HELPER_CMD="$helper"
|
||||
local status=0
|
||||
case "$helper" in
|
||||
yay)
|
||||
"$helper" -S "${base_flags[@]}" --answerdiff None --answerclean All --answeredit None --mflags "--noconfirm" --cleanafter "${packages[@]}"
|
||||
"$helper" -S "${base_flags[@]}" \
|
||||
--answerdiff None \
|
||||
--answerclean All \
|
||||
--answeredit None \
|
||||
--mflags "--noconfirm" \
|
||||
--cleanafter \
|
||||
"${packages[@]}"
|
||||
status=$?
|
||||
;;
|
||||
paru)
|
||||
"$helper" -S "${base_flags[@]}" --skipreview --cleanafter --mflags "--noconfirm" "${packages[@]}"
|
||||
"$helper" -S "${base_flags[@]}" \
|
||||
--skipreview \
|
||||
--cleanafter \
|
||||
--mflags "--noconfirm" \
|
||||
"${packages[@]}"
|
||||
status=$?
|
||||
;;
|
||||
*)
|
||||
|
||||
Reference in New Issue
Block a user