Skip to content

Instantly share code, notes, and snippets.

@moroz
Created December 3, 2025 06:18
Show Gist options
  • Select an option

  • Save moroz/5e911fac1038f092939abc4421cdff52 to your computer and use it in GitHub Desktop.

Select an option

Save moroz/5e911fac1038f092939abc4421cdff52 to your computer and use it in GitHub Desktop.
Fix wifi after system sleep on MSI prestige
#!/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