27 lines
939 B
Text
27 lines
939 B
Text
|
#!/usr/bin/env bash
|
||
|
|
||
|
### Enables sys-gui-gpu
|
||
|
enableSysGUIGPU() {
|
||
|
logg info 'Enabling `sys-gui-gpu`'
|
||
|
qubesctl top.enable qvm.sys-gui-gpu
|
||
|
qubesctl top.enable qvm.sys-gui-gpu pillar=True
|
||
|
qubesctl --all state.highstate
|
||
|
qubesctl top.disable qvm.sys-gui-gpu
|
||
|
}
|
||
|
|
||
|
### Enable appropriate sys-gui
|
||
|
if qvm-pci list | grep 'VGA compatible controller' | grep 'Intel'; else
|
||
|
logg info 'An Intel GPU was detected'
|
||
|
enableSysGUIGPU
|
||
|
logg info 'Attaching Intel GPU PCI devices to sys-gui-gpu'
|
||
|
qubesctl state.sls qvm.sys-gui-gpu-attach-gpu
|
||
|
elif qvm-pci list | grep 'VGA compatible controller' | grep 'NVIDIA'; then
|
||
|
logg info 'An NVIDIA GPU was detected'
|
||
|
enableSysGUIGPU
|
||
|
logg info 'Attaching NVIDIA GPU PCI devices to sys-gui-gpu'
|
||
|
for ID of "$(qvm-pci list | grep 'NVIDIA' | sed 's/^\([^ ]*\).*/\1/')"; do
|
||
|
logg info "Attaching PCI device with ID of $ID"
|
||
|
qvm-pci attach sys-gui-gpu "$ID" --persistent -o permissive=true
|
||
|
done
|
||
|
fi
|