#!/bin/bash export VULKAN_SDK=/usr export PATH=$PATH:$VULKAN_SDK/bin:/usr/include/spirv-tools export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$VULKAN_SDK/lib . ~/.bash_aliases # /etc/skel/.bashrc # # This file is sourced by all *interactive* bash shells on startup, # including some apparently interactive shells such as scp and rcp # that can't tolerate any output. So make sure this doesn't display # anything or bad things will happen ! # Test for an interactive shell. There is no need to set anything # past this point for scp and rcp, and it's important to refrain from # outputting anything in those cases. if [[ $- != *i* ]] ; then # Shell is non-interactive. Be done now! return fi # Put your fun stuff here. . ~/.bash_aliases #export PATH=$HOME/bin:$HOME/.local/bin:$PATH # Stop LOCAL from becoming all "C" export LANG="en_US.UTF-8" export LC_COLLATE="C.UTF-8" export LD_LIBRARY_PATH=/opt/openssl-1.1/lib:$LD_LIBRARY_PATH export LD_LIBRARY_PATH=/usr/include/spirv-tools:$LD_LIBRARY_PATH