Advertisement
para_bellum

cs go and bumblebee

Oct 14th, 2015
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. # This does work
  2. 1/ Modify de launch script of cs go (~/.steam/steam/steamapps/common/Counter-Strike\ Global\ Offensive/csgo.sh):
  3. ${DEBUGGER} "${GAMEROOT}"/${GAMEEXE} "$@"
  4. becomes
  5. primusrun ${DEBUGGER} "${GAMEROOT}"/${GAMEEXE} "$@"
  6.  
  7. 2/ Explicitly tell steam to launch that script and nothing else:
  8. In the launch options of the game:
  9. ~/.steam/steam/steamapps/common/Counter-Strike\ Global\ Offensive/csgo.sh
  10.  
  11. 3/ Bonus: disable vsync:
  12. In the launch script, add this line:
  13. export vblank_mode=0
  14.  
  15.  
  16. # This does not work
  17. $ steam &
  18. $ LD_LIBRARY_PATH=~/.steam/bin32/ ~/.steam/bin32/steam-runtime/run.sh primusrun ~/.steam/steam/steamapps/common/Counter-Strike\ Global\ Offensive/csgo.sh
  19. But there is no VAC then.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement