Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

gamewrapper.sh 440 B

il y a 3 ans
il y a 2 ans
il y a 3 ans
il y a 2 ans
il y a 3 ans
il y a 2 ans
il y a 3 ans
il y a 2 ans
1234567891011121314151617181920212223242526272829
  1. #!/usr/bin/env bash
  2. init() {
  3. /usr/bin/asusctl profile -p | cut -d' ' -f4 > /tmp/pre-gamerun.state
  4. /usr/bin/asusctl profile -P Performance
  5. #notify-send "`asusctl profile -p`"
  6. }
  7. deinit() {
  8. /usr/bin/asusctl profile -P `echo /tmp/pre-gamerun.state`
  9. rm /tmp/pre-gaemrun.state
  10. #notify-send "`asusctl profile -p`"
  11. }
  12. usage() {
  13. echo "Usage: ${0} [start|stop]"
  14. }
  15. case ${1} in
  16. start)
  17. init
  18. ;;
  19. stop)
  20. deinit
  21. ;;
  22. *)
  23. usage
  24. ;;
  25. esac