Guest User

Untitled

a guest
Jan 23rd, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. #The Razer Blade 15 is known to have sleep issues in arch caused by the USB 3.0 controller
  2. #This service mitigates this issue upon installation
  3. #Place this file in /etc/systemd/system
  4. #Start with '$ sudo systemctl start bladeSleep'
  5. #Run at boot time with '$ sudo systemctl enable bladeSleep'
  6.  
  7. [Unit]
  8. Description=A fix for the Blade 15 2018 sleep issue in arch linux
  9. After=network.target
  10. StartLimitIntervalSec=0
  11. [Service]
  12. Type=simple
  13. Restart=always
  14. RestartSec=1
  15. User=root
  16. ExecStart=echo XHC | tee /proc/acpi/wakeup
  17.  
  18. [Install]
  19. WantedBy=multi-user.target
Add Comment
Please, Sign In to add comment