.
This commit is contained in:
parent
950358594e
commit
4434a782ac
2 changed files with 15 additions and 4 deletions
|
@ -2,10 +2,22 @@
|
||||||
#
|
#
|
||||||
# Profile of Surdeus.
|
# Profile of Surdeus.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
# The main configuraton for each PC via the env directory.
|
||||||
|
export ETC="$HOME/etc"
|
||||||
|
export ENVDIR="$HOME/env"
|
||||||
|
export SETENV="$ETC/setenv/sh"
|
||||||
|
test -r "$SETENV" && . "$SETENV" && setenv profile
|
||||||
|
|
||||||
reload-profile(){
|
reload-profile(){
|
||||||
. $PROFILE
|
. $PROFILE
|
||||||
}
|
}
|
||||||
|
|
||||||
|
use-nvidia(){
|
||||||
|
. $ETC/script/use-nvidia.sh
|
||||||
|
}
|
||||||
|
|
||||||
no-output() {
|
no-output() {
|
||||||
$@ &> /dev/null
|
$@ &> /dev/null
|
||||||
}
|
}
|
||||||
|
@ -77,7 +89,6 @@ fi
|
||||||
export APP="$HOME/app"
|
export APP="$HOME/app"
|
||||||
export BIN="$HOME/bin"
|
export BIN="$HOME/bin"
|
||||||
export LOAD="$HOME/load"
|
export LOAD="$HOME/load"
|
||||||
export ETC="$HOME/etc"
|
|
||||||
export PATH="$PATH:$BIN"
|
export PATH="$PATH:$BIN"
|
||||||
export GIT="https://surdeus.su"
|
export GIT="https://surdeus.su"
|
||||||
export DEV="$HOME/dev"
|
export DEV="$HOME/dev"
|
||||||
|
@ -95,8 +106,6 @@ fi
|
||||||
export CMDHIST="$ETC/cmds"
|
export CMDHIST="$ETC/cmds"
|
||||||
export CMDHISTMAX="100"
|
export CMDHISTMAX="100"
|
||||||
export PROFILE="$HOME/.profile"
|
export PROFILE="$HOME/.profile"
|
||||||
export ENVDIR="$HOME/env"
|
|
||||||
export SETENV="$ETCsetenv/sh"
|
|
||||||
export LOGIN="$ETC/login/sh"
|
export LOGIN="$ETC/login/sh"
|
||||||
export INDENT=" "
|
export INDENT=" "
|
||||||
|
|
||||||
|
@ -171,7 +180,6 @@ export PATH="$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/tools/bin:$ANDROID_HOME/pla
|
||||||
#export PATH="$PATH:$ANDROID_SDK_HOME/cmdline-tools/*/bin"
|
#export PATH="$PATH:$ANDROID_SDK_HOME/cmdline-tools/*/bin"
|
||||||
|
|
||||||
source-if-exist "$ETC/script/lf.sh"
|
source-if-exist "$ETC/script/lf.sh"
|
||||||
test -r $SETENV && . "$SETENV" && setenv profile
|
|
||||||
|
|
||||||
# Visual editor.
|
# Visual editor.
|
||||||
ve(){
|
ve(){
|
||||||
|
|
3
script/use-nvidia.sh
Normal file
3
script/use-nvidia.sh
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
export __NV_PRIME_RENDER_OFFLOAD=1
|
||||||
|
export __GLX_VENDOR_LIBRARY_NAME=nvidia
|
||||||
|
export __VK_LAYER_NV_optimus=NVIDIA_only
|
Loading…
Reference in a new issue