Created
August 26, 2025 00:35
-
-
Save dword4/44b104b15c6de0600671dda9451474ba to your computer and use it in GitHub Desktop.
simple workaround for t14s gen6 AMD laptops not suspending properly
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # cat /usr/lib/systemd/system-sleep/nm-suspend.sh | |
| #!/bin/bash | |
| case $1 in | |
| pre) | |
| nmcli radio wifi off | |
| ;; | |
| post) | |
| nmcli radio wifi on | |
| ;; | |
| esac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment