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.

22 lines
381 B

  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. if [ -d "$HOME/go/bin" ]; then
  14. PATH="$HOME/go/bin:$PATH"
  15. fi
  16. if [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then
  17. exec startx
  18. fi