Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

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