mirror of
https://github.com/WarrenHood/dotfiles.git
synced 2025-04-29 18:44:58 +01:00
11 lines
200 B
Plaintext
11 lines
200 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
echo "Loading nvidia_drm"
|
||
|
sudo modprobe nvidia_drm
|
||
|
|
||
|
echo "Setting graphics mode to Integrated"
|
||
|
supergfxctl -m Integrated
|
||
|
|
||
|
echo "Restarting libvirtd"
|
||
|
sudo systemctl restart --now libvirtd
|