Skip to content

Commit

Permalink
Fix Surface patches on Pop
Browse files Browse the repository at this point in the history
  • Loading branch information
sebanc committed Nov 22, 2024
1 parent 6acba7e commit aa96d7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions linuxloops
Original file line number Diff line number Diff line change
Expand Up @@ -15591,7 +15591,7 @@ chmod 0755 "${bootstrapdir}"/tmp/linuxloops/install_secureboot
generate_install_surface()
{
if [ ! "${surface}" == "Yes" ]; then return; fi
if [ "${distribution}" == "Debian" ] || [ "${distribution}" == "Kali" ] || [ "${distribution}" == "Linuxmint" ] || [ "${distribution}" == "LMDE" ] || [ "${distribution}" == "MX" ] || [ "${distribution}" == "Neon" ] || [ "${distribution}" == "Pop" ] || [ "${distribution}" == "Proxmox" ] || [ "${distribution}" == "Ubuntu" ]; then
if [ "${distribution}" == "Debian" ] || [ "${distribution}" == "Kali" ] || [ "${distribution}" == "Linuxmint" ] || [ "${distribution}" == "LMDE" ] || [ "${distribution}" == "MX" ] || [ "${distribution}" == "Neon" ] || [ "${distribution}" == "Proxmox" ] || [ "${distribution}" == "Ubuntu" ]; then
cat >"${bootstrapdir}"/tmp/linuxloops/install_surface <<SURFACEAPT
#!/bin/bash
set -e
Expand All @@ -15612,7 +15612,7 @@ ninja -C build install
cd /
usermod -aG video '${useraccount_name}'
SURFACEAPT
elif [ "${distribution}" == "Elementary" ] || [ "${distribution}" == "Zorin" ]; then
elif [ "${distribution}" == "Elementary" ] || [ "${distribution}" == "Pop" ] || [ "${distribution}" == "Zorin" ]; then
cat >"${bootstrapdir}"/tmp/linuxloops/install_surface <<SURFACEAPT
#!/bin/bash
set -e
Expand Down

0 comments on commit aa96d7e

Please sign in to comment.