From 7fe29a6ed4c30943b53ef6058a74c624fb117e7b Mon Sep 17 00:00:00 2001 From: RJ Trujillo Date: Wed, 2 Aug 2023 19:31:11 -0600 Subject: [PATCH] fix(just): Don't install supergfxctl-gex extension We already include it --- .../shared/usr/share/ublue-os/just/custom.just | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/system_files/desktop/shared/usr/share/ublue-os/just/custom.just b/system_files/desktop/shared/usr/share/ublue-os/just/custom.just index b90f91f2..70e54ef9 100644 --- a/system_files/desktop/shared/usr/share/ublue-os/just/custom.just +++ b/system_files/desktop/shared/usr/share/ublue-os/just/custom.just @@ -63,14 +63,11 @@ enable-system76-scheduler: echo "This is only needed under KDE." fi -enable-supergfxctl: +enable-supergfxctl: #!/usr/bin/env bash - status=$(rpm-ostree status) - if grep "nvidia" <<< ${status}; then - systemctl enable --now supergfxd.service - if grep "gnome" <<< ${status}; then - gext install supergfxctl-gex@asus-linux.org - fi + status=$(rpm-ostree status) + if grep "nvidia" <<< ${status}; then + systemctl enable --now supergfxd.service else echo "This requires an Nvidia image." fi