Skip to content

Commit 98264a7

Browse files
author
Harsh Shandilya
committed
Linux: Fix OCD spacing
Signed-off-by: Harsh Shandilya <[email protected]>
1 parent e5dfe61 commit 98264a7

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Linux/disable_overlays.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ fi
2323
# adb kill-server
2424
"${ADB}" start-server
2525

26-
echo -e "${CL_YLW} Disabling overlays ${CL_RST}"
26+
echo -e "${CL_YLW}Disabling overlays${CL_RST}"
2727
for item in $("${ADB}" shell cmd overlay list | grep '\[x\]' | sed 's/\[x\]//');do echo "${item}" && "${ADB}" shell cmd overlay disable "${item}";done

Linux/uninstall_overlays.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,26 +24,26 @@ fi
2424
"${ADB}" start-server
2525

2626
if [[ ! "${@}" =~ --skip-disabled ]]; then
27-
echo -e "${CL_YLW} Uninstalling disabled overlays ${CL_RST}"
27+
echo -e "${CL_YLW}Uninstalling disabled overlays${CL_RST}"
2828
for item in $("${ADB}" shell cmd overlay list | grep '\[ \]' | sed 's/\[ \]//');do echo "${item}" && "${ADB}" shell pm uninstall "${item}";done
2929
fi
3030

3131
if [[ ! "${@}" =~ --skip-enabled ]]; then
32-
echo -e "${CL_YLW} Uninstalling enabled overlays ${CL_RST}"
32+
echo -e "${CL_YLW}Uninstalling enabled overlays${CL_RST}"
3333
for item in $("${ADB}" shell cmd overlay list | grep '\[x\]' | sed 's/\[x\]//');do echo "${item}" && "${ADB}" shell pm uninstall "${item}";done
3434
fi
3535

3636
if [[ ! "${@}" =~ --skip-stuck ]]; then
37-
echo -e "${CL_YLW} Uninstalling pink state overlays ${CL_RST}"
37+
echo -e "${CL_YLW}Uninstalling pink state overlays${CL_RST}"
3838
for item in $("${ADB}" shell cmd overlay list | grep '\-\-\-' | sed 's/--- //');do echo "${item}" && "${ADB}" shell pm uninstall "${item}";done
3939
fi
4040

41-
echo -e "${CL_YLW} The script will reboot your device in five seconds ${CL_RST}"
41+
echo -e "${CL_YLW}The script will reboot your device in five seconds${CL_RST}"
4242

4343
for i in {5..1}; do
44-
echo -e "${CL_YLW} Rebooting in ${i} seconds"
44+
echo -e "${CL_YLW}Rebooting in ${i} seconds"
4545
sleep 1
4646
done
4747

48-
echo -e "${CL_YLW} Rebooting ${CL_RST}"
48+
echo -e "${CL_YLW}Rebooting${CL_RST}"
4949
"${ADB}" reboot

0 commit comments

Comments
 (0)