Advertisement
Guest User

Untitled

a guest
May 4th, 2019
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. # use 4 cores for debian packages
  2. export DEB_BUILD_OPTIONS='parallel=4'
  3.  
  4. # force aspect ratio of apps i.e. no stretching
  5. for output in $(xrandr --prop | grep -E -o -i "^[A-Z\-]+-[0-9]+"); do xrandr --output "$output" --set "scaling mode" "Full aspect"; done
  6.  
  7. # multi-core xz with higher compression
  8. XZ_DEFAULTS="-T 3"
  9. XZ_OPTS=-9
  10.  
  11. # set the default sdl soundfont
  12. SDL_SOUNDFONTS=/usr/share/soundfonts/fatboy_v0786.sf2
  13.  
  14. # use newer mesa drivers
  15. export LIBGL_DRIVERS_PATH=/opt/mesa/lib/x86_64-linux-gnu/dri/:/opt/mesa/lib/i386-linux-gnu/dri/
  16. export LD_LIBRARY_PATH=/opt/mesa/lib/x86_64-linux-gnu/:/opt/mesa/lib/i386-linux-gnu/
  17. export VK_ICD_FILENAMES=/opt/mesa/share/vulkan/icd.d/radeon_icd.x86_64.json:/opt/mesa/share/vulkan/icd.d/radeon_icd.i686.json
  18.  
  19. # setup gui
  20. export GALLIUM_HUD=simple,fps,cpu,GPU-load,VRAM-usage,temperature
  21. export DXVK_HUD=version,devinfo,fps,memory
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement