From 6e8fbf36e07f9dd671880c4231131e0e38c2d384 Mon Sep 17 00:00:00 2001 From: Jack Jamison Date: Fri, 23 Jan 2026 11:00:52 -0500 Subject: bash and more proj stuff --- .bash_profile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .bash_profile (limited to '.bash_profile') diff --git a/.bash_profile b/.bash_profile new file mode 100644 index 0000000..ab83345 --- /dev/null +++ b/.bash_profile @@ -0,0 +1,11 @@ +if [ -f "$HOME/.bashrc" ]; then + . "$HOME/.bashrc" +fi + +# Environment Variables +export EDITOR="/bin/emacs" + +# Auto-start sway on tty1 +if [ -z "$DISPLAY" ] && [ "$(tty)" = "/dev/tty1" ]; then + exec sway +fi -- cgit v1.2.3