25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

gamewrapper.sh 159 B

1234567891011121314
  1. #!/usr/bin/env bash
  2. init () {
  3. kill $(pidof redshift)
  4. fanmode.sh 1
  5. }
  6. deinit () {
  7. exec redshift &
  8. fanmode.sh 0
  9. }
  10. init && /usr/bin/prime-run $@ && deinit