2021-08-10 01:04:20 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
#
|
|
|
|
|
# name: Switch to NVIDIA Graphics
|
|
|
|
|
# icon: preferences-system-symbolic
|
|
|
|
|
# description: Use NVIDIA GPU for display and applications
|
|
|
|
|
# keywords: nvidia graphics switch
|
|
|
|
|
|
|
|
|
|
gnome-terminal -- sh -c '
|
|
|
|
|
if system76-power graphics nvidia; then
|
2023-08-03 09:05:40 +02:00
|
|
|
echo "Successfully switched. You may now reboot"
|
2021-08-10 01:04:20 +02:00
|
|
|
else
|
|
|
|
|
echo "Failed to switch\nPress key to exit"
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
read x
|
2023-08-03 09:05:40 +02:00
|
|
|
'
|