mirror of
https://github.com/clockworkpi/launcher_deot.git
synced 2025-12-12 15:38:52 +01:00
9 lines
97 B
Bash
9 lines
97 B
Bash
#!/bin/bash
|
|
|
|
kernel=$(uname -r)
|
|
if [[ $kernel == *"5.7"* ]]; then
|
|
systemctl suspend
|
|
fi
|
|
|
|
exit 0
|