Created
December 3, 2025 06:18
-
-
Save moroz/5e911fac1038f092939abc4421cdff52 to your computer and use it in GitHub Desktop.
Fix wifi after system sleep on MSI prestige
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
| #!/bin/sh | |
| # /usr/lib/systemd/system-sleep/iwlwifi.sh | |
| # https://forums.linuxmint.com/viewtopic.php?t=413512 | |
| case $1/$2 in | |
| pre/*) | |
| modprobe -r iwlmvm iwlwifi | |
| ;; | |
| post/*) | |
| modprobe iwlmvm iwlwifi | |
| ;; | |
| esac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment