Advertisement
Guest User

League of Legends taskset bash script

a guest
Aug 2nd, 2012
789
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.19 KB | None | 0 0
  1. # Created by unixblogger, aka ReCon
  2. #!/bin/bash
  3.  
  4. PID=`pidof LolClient.exe`
  5.  
  6. if [ -z $PID ]; then
  7.     echo "Actually, there is no LoL Instance running"
  8.  
  9. else
  10.     taskset -p 1 $PID
  11. fi
  12.  
  13. # Done!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement