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.

feat(deno): autoload deno CLI to path, alongside some changes to .profile

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

+28 -2
+4
.config/bash/tools/deno.bashrc
··· 1 + #!/usr/bin/env bash 2 + 3 + export DENO_INSTALL="$HOME/.deno" 4 + [ -d "$DENO_INSTALL/bin" ] && export PATH="$DENO_INSTALL/bin:$PATH"
+24 -2
.profile
··· 1 1 #!/usr/bin/env sh 2 + # ~/.profile: executed by the command interpreter for login shells. 3 + # This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login 4 + # exists. 5 + # see /usr/share/doc/bash/examples/startup-files for examples. 6 + # the files are located in the bash-doc package. 7 + 8 + # the default umask is set in /etc/profile; for setting the umask 9 + # for ssh logins, install and configure the libpam-umask package. 10 + #umask 022 11 + 2 12 # if running bash 3 13 if [ -n "$BASH_VERSION" ]; then 4 14 # include .bashrc if it exists 5 15 if [ -f "$HOME/.bashrc" ]; then 6 - . "$HOME/.bashrc" 16 + . "$HOME/.bashrc" 7 17 fi 8 18 fi 9 19 20 + # set PATH so it includes user's private bin if it exists 21 + if [ -d "$HOME/bin" ] ; then 22 + PATH="$HOME/bin:$PATH" 23 + fi 24 + 25 + # set PATH so it includes user's private bin if it exists 26 + if [ -d "$HOME/.local/bin" ] ; then 27 + PATH="$HOME/.local/bin:$PATH" 28 + fi 29 + 10 30 export PATH="/usr/local/bin:$HOME/.local/bin:$HOME/bin${PATH:+:}$PATH:$HOME/.local/share/JetBrains/Toolbox/scripts" # ~vern specifics and more 11 31 mesg n 2> /dev/null || true 12 32 ··· 20 40 . "$HOME/.config/localconfig.env" 21 41 fi 22 42 23 - _byobu_sourced=1 . /usr/bin/byobu-launch 2>/dev/null || true 43 + if [[ $FF_BYOBU_ON_LOGIN != "" ]]; then 44 + _byobu_sourced=1 . /usr/bin/byobu-launch 2>/dev/null || true 45 + fi