#!/bin/bash # Copyright (C) 2019 Ian Kelling # SPDX-License-Identifier: AGPL-3.0-or-later # to debug #set -x # redirect output to log file. this doesn't work. todo figure out why #exec 1>>/a/tmp/bashlog #exec 2>>/a/tmp/bashlog # History related options first and always, or else we risk screwing up # the history file. This is duplicated in ~/.bash_profile just for good # measure # History file size limit, set to unlimited. # this needs to be different from the default because # default HISTFILESIZE is 500 and could clobber our history HISTFILESIZE= # max commands 1 session can append/read from history HISTSIZE=1000000 # the time format display when doing the history command # also, setting this makes the history file record time # of each command as seconds from the epoch HISTTIMEFORMAT="%Y-%m-%d %I:%M %p " # consecutive duplicate lines dont go in history HISTCONTROL=ignoredups # This works in addition to HISTCONTROL to do more flexible things # it could also do the same things as HISTCONTROL and thus replace it, # but meh. dunno why, but just " *" does glob expansion, so use [ ] to avoid it. HISTIGNORE='pass *:otp *:oathtool *:histrm *' #### begin section that works with sl() function to return from # noninteractive ssh shells, or tty. tty because often i # use it when something is going and io is slow and my bashrc # is too slow. if [[ $LC_USEBASHRC != t && ( $SSH_CONNECTION || $TERM == linux ) ]]; then # Here we did not opt-in to running our .bashrc file so we just # return, but we still setup a function to source it without returning # so if we want it we don't have to restart our ssh connection. brc() { export LC_USEBASHRC=t source ~/.bashrc } return 0 else ###### Begin sourcing of files ##### # The distinction between login and non-login shells is super lame # and pretty random. get rid of that distinction. if ! shopt -q login_shell; then if [[ -r /etc/profile ]]; then source /etc/profile fi # note, this is not exactly the same as a login shell, because that # reads ~/.bash_profile or alternative, which usually just sources # this file, and we don't want to do that and cause an infinite # loop. fi # source brc and brc2 if they exist. We have to readlink because we # could be using sl() from ./brc. _tmp=$(readlink -f ${BASH_SOURCE[0]}) bashrc_dir=${_tmp%/*} _tmp=$bashrc_dir/brc if [[ -s $bashrc_dir ]]; then # shellcheck source=./brc source $_tmp fi # brc2 is for things i dont necessarily want on every system _tmp=$bashrc_dir/brc2 if [[ -s $_tmp ]]; then # shellcheck source=./brc2 source $_tmp else # This check is for when running the sl() command, # and the remote host got its type misidentified. _tmp=$bashrc_dir/../brc2 if [[ -s $_tmp ]]; then # shellcheck source=./brc2 source $_tmp fi fi ###### End sourcing of files ##### fi #### end section that works with sl() function to return from #### noninteractive ssh shells # ensure no bad programs appending to this file will have an affect return 0 # kitty puts this here on startup, i need to build with some option to # avoid it, whatever. # BEGIN_KITTY_SHELL_INTEGRATION if test -n "$KITTY_INSTALLATION_DIR" -a -e "$KITTY_INSTALLATION_DIR/shell-integration/bash/kitty.bash"; then source "$KITTY_INSTALLATION_DIR/shell-integration/bash/kitty.bash"; fi # END_KITTY_SHELL_INTEGRATION