Document bash files in system/
Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
This commit is contained in:
parent
c207da92bb
commit
c42bd33b8c
11 changed files with 133 additions and 44 deletions
|
@ -1,12 +1,20 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
# SCRIPT NAME:
|
||||
# .bash_profile
|
||||
#
|
||||
# Author: Severin Kaderli <severin.kaderli@gmail.com>
|
||||
# We just source .bashrc so we don't need to manage two files.
|
||||
# AUTHOR:
|
||||
# Severin Kaderli <severin.kaderli@gmail.com>
|
||||
#
|
||||
# DESCRIPTION:
|
||||
# This script is called when you start a login shell.
|
||||
#
|
||||
# USAGE:
|
||||
# This script is automatically executed when you start a login shell.
|
||||
if [[ -f "${HOME}/.bashrc" ]]; then
|
||||
. "${HOME}/.bashrc"
|
||||
fi
|
||||
|
||||
# Setting keyboard colors
|
||||
if [[ -f "${HOME}/.keyleds" ]]; then
|
||||
. "${HOME}/.keyleds"
|
||||
fi
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue