Personal dotfiles for Linux, mostly for Nixpkgs/NixOS-based and Termux setups. Mirrored using GitLab's push mirroring feature. gitlab.com/andreijiroh-dev/dotfiles
linux dotfiles
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(global): add some localenv detection on bashrc + README updates

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.eu.org>

+9 -3
+6 -1
.bashrc
··· 17 17 fi 18 18 export GPG_TTY=$(tty) 19 19 20 + # how about detecting local configs 21 + if [ -f "$HOME/.config/localconfig.env" ]; then 22 + . "$HOME/.config/localconfig.env" 23 + fi 24 + 20 25 if command -v oh-my-posh >>/dev/null && [[ $FF_USE_OHMYPOSH != "false" ]]; then 21 26 eval "$(oh-my-posh init bash)" 22 27 else 23 28 if [[ $PROMPT_THEME == "disabled" ]]; then 24 29 true 25 - elif [[ $PROMPT_THEME != "" ]] && [[ -f "$HOME/.config/bash/shell-prompts/${PROMPT_THEME}.bashrc" ]]; then 30 + elif [[ -f "$HOME/.config/bash/shell-prompts/${PROMPT_THEME}.bashrc" ]]; then 26 31 source "$HOME/.config/bash/shell-prompts/${PROMPT_THEME}.bashrc" 27 32 else 28 33 source "$HOME/.config/bash/shell-prompts/vern.bashrc"
+3 -2
README.md
··· 11 11 12 12 ## Available Git mirrors 13 13 14 - This project is hosted on [hosted instance of sourcehut](https://sr.ht) at the 14 + This project is hosted on [hosted instance of sourcehut git](https://git.sr.ht) at the 15 15 [`~ajhalili2006/dotfiles`][git.sr.ht] Git repository, alongside the following 16 16 Git mirrors: 17 17 18 - * mau.dev: <https://mau.dev/andreijiroh.dev/dotfiles> 18 + * mau.dev: <https://mau.dev/andreijiroh.dev/dotfiles> (technically canonical due 19 + to how mirroring work and usualy pushed there first) 19 20 * GitHub: <https://github.com/ajhalili2006/dotfiles> 20 21 * Launchpad.net: <https://git.launchpad.net/ajhalili2006-dotfiles> 21 22 * ~vern git: <https://git.vern.cc/ajhalili2006/dotfiles-modern>