Export LAPTOP
This commit is contained in:
parent
3932142c7c
commit
1cd0375e05
|
@ -1,14 +1,17 @@
|
||||||
# Runs only once https://unix.stackexchange.com/questions/71253/what-should-shouldnt-go-in-zshenv-zshrc-zlogin-zprofile-zlogout
|
source $HOME/.zshrc_exports
|
||||||
|
|
||||||
source ~/.zshrc_exports
|
|
||||||
|
|
||||||
if ! echo $PATH | grep -q "$HOME/.local/bin"; then
|
if ! echo $PATH | grep -q "$HOME/.local/bin"; then
|
||||||
export PATH=$PATH:$HOME/.local/bin
|
export PATH=$PATH:$HOME/.local/bin
|
||||||
fi
|
fi
|
||||||
|
|
||||||
export PATH=$PATH:$HOME/.local/share/gem/ruby/3.0.0/bin
|
if ! echo $PATH | grep -q "$HOME/.local/share/gem/ruby/3.0.0/bin"; then
|
||||||
|
export PATH=$PATH:$HOME/.local/share/gem/ruby/3.0.0/bin
|
||||||
|
fi
|
||||||
|
|
||||||
|
if grep -q "i5" /proc/cpuinfo; then
|
||||||
|
export LAPTOP
|
||||||
|
fi
|
||||||
|
|
||||||
if [[ -z $DISPLAY ]] && [[ $(tty) = /dev/tty1 ]]; then
|
if [[ -z $DISPLAY ]] && [[ $(tty) = /dev/tty1 ]]; then
|
||||||
exec startx
|
exec startx
|
||||||
#ssh-agent startx
|
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue