Skip to content
This repository was archived by the owner on Jan 18, 2026. It is now read-only.

Commit d2e5418

Browse files
author
Erazem Kokot
committed
Fix wrong virtualbox-guest packages
1 parent 692499b commit d2e5418

2 files changed

Lines changed: 2 additions & 12 deletions

File tree

lib/configure_desktop.sh

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -221,12 +221,7 @@ graphics() {
221221
if "$VM" ; then
222222
case "$virt" in
223223
vbox) dialog --ok-button "$ok" --msgbox "\n$vbox_msg" 10 60
224-
GPU="virtualbox-guest-utils "
225-
if [ "$kernel" == "linux" ]; then
226-
GPU+="virtualbox-guest-modules-arch "
227-
else
228-
GPU+="virtualbox-guest-dkms "
229-
fi
224+
GPU="virtualbox-guest-utils virtualbox-guest-dkms "
230225
;;
231226
vmware) dialog --ok-button "$ok" --msgbox "\n$vmware_msg" 10 60
232227
GPU="xf86-video-vmware xf86-input-vmmouse open-vm-tools net-tools gtkmm mesa mesa-libgl"

lib/configure_quick.sh

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -155,12 +155,7 @@ quick_desktop() {
155155
while (true) ; do
156156
if "${VM}" ; then
157157
case "${virt}" in
158-
vbox) GPU="virtualbox-guest-utils "
159-
if [ "${kernel}" == "linux" ]; then
160-
GPU+="virtualbox-guest-modules-arch "
161-
else
162-
GPU+="virtualbox-guest-dkms "
163-
fi
158+
vbox) GPU="virtualbox-guest-utils virtualbox-guest-dkms "
164159
;;
165160
vmware) GPU="xf86-video-vmware xf86-input-vmmouse open-vm-tools net-tools gtkmm mesa mesa-libgl"
166161
;;

0 commit comments

Comments
 (0)