Skip to content

add default .bashrc for macos #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# linux-scripts
Useful linux scripts that someone may need from time to time ...

testing a push with a right credential --

# External

* [advanced tips for a colorful bash prompt](http://www.askapache.com/linux/bash-power-prompt.html)
Expand Down
42 changes: 42 additions & 0 deletions macos/home/yoda/.bashrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
#
# ~/.bashrc
#


# If not running interactively, don't do anything
#[[ $- != *i* ]] && return
case $- in
*i*) ;;
*) return;;
esac

# don't put duplicate linses or lines starting with space in the history
HISTCONTROL=ignoreboth

# append to the history file, don't overwrite it
shopt -s histappend

# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE=1000
HISTFILESIZE=2000

# check the window size after each command and, if ncessary,
# update the values of LINES and COLUMS
shopt -s checkwinsize

#export PULSE_LATENCY_MSEC=60
export EDITOR=nano

export PATH=$HOME/bin:$PATH

# include .bashrc_aliases if it exists
BASHRC_CONF=($HOME/.bashrc_aliases $HOME/.bashrc_prompt)
for i in ${BASHRC_CONF[@]}
do
if [ -f $i ]; then
source $i
# echo $i
fi
done

unset color_prompt force_color_prompt
12 changes: 12 additions & 0 deletions macos/home/yoda/.bashrc_aliases
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
alias diff='colordiff' # requires colordiff package
alias grep='grep --color=auto --ignore-case'
alias more='less'
alias df='df -h'
alias du='du -c -h'
alias ls='ls -G'
alias ll='ls -lahG'
alias mkdir='mkdir -p -v'
alias nano='nano -w -c'
alias ping='ping -c 5'
alias dmesg='dmesg -HL'
alias ptpb='curl -F c=@- https://ptpb.pw/' # pastebin alternative
74 changes: 74 additions & 0 deletions macos/home/yoda/.bashrc_colors
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
#!/bin/bash

# Reset
Color_Off='\e[0m' # Text Reset

# Regular Colors
Black='\e[0;30m' # Black
Red='\e[0;31m' # Red
Green='\e[0;32m' # Green
Yellow='\e[0;33m' # Yellow
Blue='\e[0;34m' # Blue
Purple='\e[0;35m' # Purple
Cyan='\e[0;36m' # Cyan
White='\e[0;37m' # White

# Bold
BBlack='\e[1;30m' # Black
BRed='\e[1;31m' # Red
BGreen='\e[1;32m' # Green
BYellow='\e[1;33m' # Yellow
BBlue='\e[1;34m' # Blue
BPurple='\e[1;35m' # Purple
BCyan='\e[1;36m' # Cyan
BWhite='\e[1;37m' # White

# Underline
UBlack='\e[4;30m' # Black
URed='\e[4;31m' # Red
UGreen='\e[4;32m' # Green
UYellow='\e[4;33m' # Yellow
UBlue='\e[4;34m' # Blue
UPurple='\e[4;35m' # Purple
UCyan='\e[4;36m' # Cyan
UWhite='\e[4;37m' # White

# Background
On_Black='\e[40m' # Black
On_Red='\e[41m' # Red
On_Green='\e[42m' # Green
On_Yellow='\e[43m' # Yellow
On_Blue='\e[44m' # Blue
On_Purple='\e[45m' # Purple
On_Cyan='\e[46m' # Cyan
On_White='\e[47m' # White

# High Intensity
IBlack='\e[0;90m' # Black
IRed='\e[0;91m' # Red
IGreen='\e[0;92m' # Green
IYellow='\e[0;93m' # Yellow
IBlue='\e[0;94m' # Blue
IPurple='\e[0;95m' # Purple
ICyan='\e[0;96m' # Cyan
IWhite='\e[0;97m' # White

# Bold High Intensity
BIBlack='\e[1;90m' # Black
BIRed='\e[1;91m' # Red
BIGreen='\e[1;92m' # Green
BIYellow='\e[1;93m' # Yellow
BIBlue='\e[1;94m' # Blue
BIPurple='\e[1;95m' # Purple
BICyan='\e[1;96m' # Cyan
BIWhite='\e[1;97m' # White

# High Intensity backgrounds
On_IBlack='\e[0;100m' # Black
On_IRed='\e[0;101m' # Red
On_IGreen='\e[0;102m' # Green
On_IYellow='\e[0;103m' # Yellow
On_IBlue='\e[0;104m' # Blue
On_IPurple='\e[0;105m' # Purple
On_ICyan='\e[0;106m' # Cyan
On_IWhite='\e[0;107m' # White
Loading