Шашкин Николай af5cbfa740 up xcursor size/theme
2024-02-21 20:12:50 +03:00
2023-09-19 00:30:45 +03:00
2012-05-18 13:46:36 +04:00
2024-02-21 20:12:50 +03:00
2012-05-18 13:46:36 +04:00
2023-06-08 20:49:52 +03:00
2019-06-17 12:11:08 +03:00
2019-06-17 13:44:55 +03:00
2012-05-18 13:46:36 +04:00
2014-01-17 13:53:13 +04:00

# Create ~/.bash_profile

[[ -f ~/.bashrc ]] && . ~/.bashrc

# Create ~/.bashrc file with contents below.

#!/bin/bash
# ~/.bashrc

BDOTDIR=~/.bash

[ -x $BDOTDIR/const.sh ] && source $BDOTDIR/const.sh
[ -x $BDOTDIR/local_const.sh ] && source $BDOTDIR/local_const.sh
for rc in $BDOTDIR/*.sh
do
    [ -x $rc ] && source $rc
done
unset rc

[ -x $BDOTDIR/local.sh ] && source $BDOTDIR/local.sh

unset BDOTDIR
Description
My Bash config
Readme 54 KiB
Languages
Shell 100%