I showed you my source code, pls respond
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
414 B

4 years ago
  1. #umask 022
  2. if [ -n "$BASH_VERSION" ]; then
  3. if [ -f "$HOME/.bashrc" ]; then
  4. . "$HOME/.bashrc"
  5. fi
  6. fi
  7. if [ -d "$HOME/bin" ]; then
  8. PATH="$HOME/bin:$PATH"
  9. fi
  10. if [ -d "$HOME/.local/bin" ]; then
  11. PATH="$HOME/.local/bin:$PATH"
  12. fi
  13. GOPATH="$HOME/.go/"
  14. export GOPATH
  15. if [ -d "$GOPATH/bin" ]; then
  16. PATH="$GOPATH/bin:$PATH"
  17. fi
  18. if [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then
  19. exec startx
  20. fi