summaryrefslogtreecommitdiff
path: root/.config/bash/rc.sh
blob: 548850d676a3390d2ab810c66f4a961505bf275b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/hint/bash
# ~/.bashrc: Sourced by bash(1) for interactive non-login shells
#
# I include this file for all interactive invocations of bash(1), whether
# they are login shells or not.

# If not running interactively, don't do anything
# This line is probably not nescessary, but whatevs.
[[ $- == *i* ]] || return

# GDM failsafe ignores profile (login) settings, but I use XDG stuff
# here.
. "${XDG_CONFIG_HOME:-$HOME/.config}"/login.d/??_xdg.sh

# Include modular config files
if [[ -d ${XDG_CONFIG_HOME}/bash/rc.d ]]; then
	for file in "${XDG_CONFIG_HOME}/bash/rc.d"/*.sh; do
		. "$file"
	done
fi

# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if [ -f /etc/bash_completion ]; then
	. /etc/bash_completion
fi