mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-01-27 03:35:15 +00:00
12 lines
385 B
Bash
Executable File
12 lines
385 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
IMAGE_INFO="/usr/share/ublue-os/image-info.json"
|
|
BASE_IMAGE_NAME=$(jq -r '."base-image-name"' < $IMAGE_INFO)
|
|
|
|
if /usr/libexec/hwsupport/valve-hardware; then
|
|
# Don't do anything on Valve hardware, prevents lizard mode from working properly.
|
|
exit 0
|
|
fi
|
|
|
|
/usr/bin/joystickwake --command "qdbus org.kde.Solid.PowerManagement /org/kde/Solid/PowerManagement wakeup" "$@"
|