first commit

This commit is contained in:
2026-07-13 19:42:03 -07:00
commit b80a314f49
5 changed files with 87 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
#
# ~/.bashrc
#
# !WARN This file depends on https://gitea.burke.host/burkkyy/.config.git
# Set the terminal transparency for st
[[ "$(cat /proc/$PPID/comm)" = "st" ]] && transset-df "0.90" --id "$WINDOWID" > /dev/null
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
# Load environment variables
[ -f ~/.config/bash/env.sh ] && . ~/.config/bash/env.sh
# Load bash aliases
[ -f ~/.config/bash/aliases.sh ] && . ~/.config/bash/aliases.sh
# Load shell key binds
[ -f ~/.config/bash/binds.sh ] && . ~/.config/bash/binds.sh
# Set bash prompt
[ -f ~/.config/bash/prompt.sh ] && PS1="$(~/.config/bash/prompt.sh) " || PS1="[\u@\h \W]\$ "