summaryrefslogtreecommitdiff
path: root/zsh/env
diff options
context:
space:
mode:
authorxAlpharax <42233094+xAlpharax@users.noreply.github.com>2023-09-24 20:36:04 +0300
committerxAlpharax <42233094+xAlpharax@users.noreply.github.com>2023-09-24 20:36:04 +0300
commit805c951522bc5063849b51a729b08bfdf16168df (patch)
tree302b1842142b6b451a7b0a2124e0e1769dbc4816 /zsh/env
parentc702b3c1d5420be981f67cdc40d62052df87563c (diff)
Adding X11, zsh, nvtop, dmenu and some other tools for wallpapers,
power menus, uploading simple text/binary files. Changes to be committed: new file: X11/Xresources new file: X11/xinit new file: bmenu new file: dmenu.conf new file: nvtop/interface.ini new file: pmenu new file: upload new file: zsh/aliases new file: zsh/env new file: zsh/zshrc
Diffstat (limited to 'zsh/env')
-rw-r--r--zsh/env56
1 files changed, 56 insertions, 0 deletions
diff --git a/zsh/env b/zsh/env
new file mode 100644
index 0000000..037010d
--- /dev/null
+++ b/zsh/env
@@ -0,0 +1,56 @@
+#!/bin/sh
+
+### ENVIRONMENT VARIABLES ###
+
+### apps to open stuff ###
+
+export EDITOR=nvim
+export BROWSER=brave
+
+##################
+
+### gpg ###
+export GPG_TTY=$(tty)
+
+### dotnet disable telemetry ###
+export DOTNET_CLI_TELEMETRY_OPTOUT=1
+
+### dbus stuff ###
+export NO_AT_BRIDGE=1
+
+### paths ###
+export PATH=/bin:/sbin/:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/home/alphara/.local/bin:/home/alphara/exfatssd/IEUCYS/flutter2/bin
+
+### XDG ###
+export XDG_CONFIG_HOME=/home/alphara/.config
+
+### steam ###
+export STEAM_COMPAT_DATA_PATH=~/.local/share/Steam/steamapps/compatdata
+export STEAM_COMPAT_CLIENT_INSTALL_PATH=~/.local/share/Steam/
+
+### gaming stuff ###
+#export mesa_glthread=true # AMD OPENGL shader caching
+export RADV_PERFTEST=aco # AMD faster shader compiler by Valve
+
+export __GL_THREADED_OPTIMIZATION=1 # NVIDIA OPENGL
+export __GL_SHADER_DISK_CACHE=1 # to enable shader cache
+
+### ray tracing support and nvidia stuff ###
+export PROTON_HIDE_NVIDIA_GPU=0
+export PROTON_ENABLE_NVAPI=1
+export VKD3D_CONFIG=dxr,dxr11
+#export PROTON_ENABLE_NGX_UPDATER=1
+
+### QT and GTK ###
+export GTK_THEME=Arc:dark
+export GTK2_RC_FILES=/usr/share/themes/Arc-Dark/gtk-2.0/gtkrc
+export QT_STYLE_OVERRIDE=adwaita-dark
+
+### pipewire ###
+# export PIPEWIRE_LATENCY=256/48000 # IF NEEDED 16/48000 ~ 0.33 ms latency
+
+### cuda & ML ###
+export PATH=$PATH:/usr/local/cuda-11.7/bin
+export LD_LIBRARY_PATH=/lib:/usr/lib:/usr/local/lib:/usr/local/cuda-11.7/lib64
+
+TORCH_CUDA_ARCH_LIST="8.6"