Skip to content
This repository was archived by the owner on Aug 15, 2025. It is now read-only.

Commit 2567971

Browse files
author
excalibur1234
committed
fixed output
1 parent 6184b40 commit 2567971

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pacui

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ function func_u
153153
sudo pacman -Syu --force --color always
154154
;;
155155
* ) # do this in all other cases
156-
echo " \e[1m Packages have not been updated.\e[0m"
156+
echo -e " \e[1m Packages have not been updated.\e[0m"
157157
;;
158158
esac
159159

@@ -240,7 +240,7 @@ function func_m
240240
sudo pacman -Rsn $(pacman -Qqdt) --color always --noconfirm
241241
;;
242242
* ) # do this in all other cases
243-
echo " \e[1m Packages have not been removed.\e[0m"
243+
echo -e " \e[1m Packages have not been removed.\e[0m"
244244
;;
245245
esac # end of "case" loop
246246

@@ -277,7 +277,7 @@ function func_m
277277
if ! ( pacman -Dk &>/dev/null )
278278
then
279279
echo -e " \e[41m The following inconsistencies have been found in your local packages: \e[0m"
280-
echo "$( pacman -Dk )" # encapsulate "pacman -Dk" in echo command. without this, the strict bash mode would quit pacui whenever "pacman -Dk" encounters an error!
280+
echo -e "$( pacman -Dk )" # encapsulate "pacman -Dk" in echo command. without this, the strict bash mode would quit pacui whenever "pacman -Dk" encounters an error!
281281
fi
282282
echo ""
283283

@@ -595,7 +595,7 @@ function func_r
595595
;;
596596

597597
* ) # do this in all other cases
598-
echo " \e[1m No input recognized. Remove process has been cancelled. \e[0m"
598+
echo -e " \e[1m No input recognized. Remove process has been cancelled. \e[0m"
599599
;;
600600

601601
esac

0 commit comments

Comments
 (0)