4feed1672f
If a working directory is set with wdir(), bashrc will cd into the path stored in a file written in /tmp. A new terminal will then have a shell in that directory. cwdir() deletes the file in /tmp and pwdir() prints the working directory from said file if it exists.
65 lines
1.1 KiB
Bash
65 lines
1.1 KiB
Bash
#
|
|
# ~/.bashrc
|
|
#
|
|
|
|
# If not running interactively, don't do anything
|
|
[[ $- != *i* ]] && return
|
|
|
|
alias ls='ls --color=auto'
|
|
#PS1='[\u@\h \W]\$ '
|
|
|
|
# vi bindings
|
|
set -o vi
|
|
|
|
# doas bash completion
|
|
complete -cf doas
|
|
|
|
# default editor
|
|
export EDITOR=nvim
|
|
export VISUAL=nvim
|
|
export TERMINAL=alacritty
|
|
|
|
# for java applicatons
|
|
export _JAVA_AWT_WM_NONREPARENTING=1
|
|
|
|
# android SDK
|
|
#export ANDROID_SDK_ROOT=/home/sheldonmlee/Library/Android
|
|
#export PATH="$ANDROID_SDK_ROOT/cmdline-tools/latest/bin:$PATH"
|
|
#export PATH="$ANDROID_SDK_ROOT/platform-tools:$PATH"
|
|
|
|
# custom scripts and programs
|
|
export PATH="$HOME/.local/bin:$PATH"
|
|
export PATH="$HOME/.config/wm_scripts:$PATH"
|
|
|
|
if grep "arch-laptop" /etc/hostname &> /dev/null ; then
|
|
export IS_LAPTOP=1
|
|
fi
|
|
|
|
# Path to store working directory
|
|
export WDIR_PATH="/tmp/$(id -u).wdir"
|
|
|
|
# include bash aliases
|
|
if [ -f ~/.bash_aliases ]
|
|
then
|
|
source ~/.bash_aliases
|
|
fi
|
|
|
|
# custom scripts
|
|
if [ -f ~/.custom_bash_scripts ]
|
|
then
|
|
source ~/.custom_bash_scripts
|
|
fi
|
|
|
|
# nnn bookmarks
|
|
if [ -f ~/.nnn_bookmarks ]
|
|
then
|
|
source ~/.nnn_bookmarks
|
|
fi
|
|
|
|
if [ -f $WDIR_PATH ]
|
|
then
|
|
wdir="$(cat $WDIR_PATH)"
|
|
echo "Working directory from $WDIR_PATH"
|
|
cd "$wdir"
|
|
fi
|