Skip to content
Snippets Groups Projects
Commit 1e22cd55 authored by Philip Müller's avatar Philip Müller
Browse files

[mhwd-kernel] fix linux-rt display

parent ef61fa7f
No related branches found
No related tags found
No related merge requests found
...@@ -61,7 +61,8 @@ kernel_repo() { ...@@ -61,7 +61,8 @@ kernel_repo() {
kernel_list() { kernel_list() {
printf "\e[32mCurrently running:\e[0m $(uname -r) (${current})\n" printf "\e[32mCurrently running:\e[0m $(uname -r) (${current})\n"
echo "The following kernels are installed in your system:" echo "The following kernels are installed in your system:"
pacman -Qqs "^linux[0-9][0-9]?.*[0-9t]$" | while read -r; do echo " * $REPLY"; done pacman -Qqs "^linux[0-9][0-9]?([0-9])$" | while read -r; do echo " * $REPLY"; done
pacman -Qqs "^linux[0-9][0-9]?([0-9])-rt$" | while read -r; do echo " * $REPLY"; done
} }
kernel_remove() { kernel_remove() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment