1
0
Fork 0
mirror of synced 2024-06-04 16:21:08 -04:00

Compare commits

...

2 commits

Author SHA1 Message Date
TNE 61903319dd bump pkgver 2023-03-24 02:24:40 +01:00
TNE 1a40ada700 grub: set ibt=off via drop in file 2023-03-24 02:23:30 +01:00
2 changed files with 7 additions and 1 deletions

View file

@ -2,7 +2,7 @@
# Maintainer: Librewish <librewish@gmail.com> # Maintainer: Librewish <librewish@gmail.com>
pkgname=garuda-common-settings pkgname=garuda-common-settings
pkgver=2.6.15 pkgver=2.6.16
pkgrel=1 pkgrel=1
arch=('any') arch=('any')
url="https://gitlab.com/garuda-linux/themes-and-settings/settings/$pkgname" url="https://gitlab.com/garuda-linux/themes-and-settings/settings/$pkgname"

View file

@ -0,0 +1,6 @@
if [[ ! $GRUB_CMDLINE_LINUX_DEFAULT =~ ibt=[^[:space:]]+ ]]; then
GRUB_CMDLINE_LINUX_DEFAULT="${GRUB_CMDLINE_LINUX_DEFAULT:+$GRUB_CMDLINE_LINUX_DEFAULT }ibt=off"
fi
if [ -z "${GRUB_DISABLE_OS_PROBER+x}" ]; then
GRUB_DISABLE_OS_PROBER=false
fi