Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. #!/bin/bash
  2. # This script assumes you're running Steam with native libraries,
  3. # as opposed to the ones bundled with Steam itself. Check your distribution
  4. # to find out how it runs Steam.
  5.  
  6. # Set this to the full path to the Half-Life folder, usually in Steam/steamapps/common/.
  7. export HL_ROOT=$HOME/Half-Life
  8. # If your distribution keeps 32-bit libraries in a different folder, change /usr/lib32 to that folder.
  9. export LD_LIBRARY_PATH=$HL_ROOT:/usr/lib32
  10. # Change the path here to point to your libhl_capture.so.
  11. export LD_PRELOAD=/full/path/to/libhl_capture.so
  12.  
  13. cd $HL_ROOT
  14. exec ./hl_linux -steam "$@"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement