aboutsummaryrefslogtreecommitdiff
path: root/home/.bashrc
diff options
context:
space:
mode:
Diffstat (limited to 'home/.bashrc')
-rw-r--r--home/.bashrc14
1 files changed, 7 insertions, 7 deletions
diff --git a/home/.bashrc b/home/.bashrc
index 6f6711e..8a08934 100644
--- a/home/.bashrc
+++ b/home/.bashrc
@@ -8,7 +8,7 @@ if [[ $- != *i* ]] ; then
8fi 8fi
9 9
10 10
11######################################################################### 11########################################################################
12# PS1 - Primary prompt displayed before each command 12# PS1 - Primary prompt displayed before each command
13#################################################### 13####################################################
14# The PS1 prompt is constructed piece-by-piece by concatenating each 14# The PS1 prompt is constructed piece-by-piece by concatenating each
@@ -20,7 +20,7 @@ fi
20# 20#
21# Example of what the prompt should look like: 21# Example of what the prompt should look like:
22# [1] [2023-03-28 16:02:55] [user host] [(stable) /etc/portage] > 22# [1] [2023-03-28 16:02:55] [user host] [(stable) /etc/portage] >
23######################################################################### 23########################################################################
24# Set colors for easy reading 24# Set colors for easy reading
25PS1_COLOR_RESET="\[\e[0m\]" 25PS1_COLOR_RESET="\[\e[0m\]"
26PS1_COLOR_GREY="\[\e[90m\]" 26PS1_COLOR_GREY="\[\e[90m\]"
@@ -68,19 +68,19 @@ PS1+="$PS1_COLOR_MAIN[$PS1_COLOR_RESET" # [
68PS1+="\$(parse_git_branch) " # (BRANCH) 68PS1+="\$(parse_git_branch) " # (BRANCH)
69PS1+="$PS1_COLOR_CYAN\w$PS1_COLOR_RESET" # DIR 69PS1+="$PS1_COLOR_CYAN\w$PS1_COLOR_RESET" # DIR
70PS1+="$PS1_COLOR_MAIN] > $PS1_COLOR_RESET" # ] > 70PS1+="$PS1_COLOR_MAIN] > $PS1_COLOR_RESET" # ] >
71######################################################################### 71########################################################################
72 72
73 73
74######################################################################### 74########################################################################
75# PS2 - Secondary prompt displayed when a command needs more input 75# PS2 - Secondary prompt displayed when a command needs more input
76################################################################## 76##################################################################
77PS2=" > " 77PS2=" > "
78######################################################################### 78########################################################################
79 79
80 80
81######################################################################### 81########################################################################
82# Aliases 82# Aliases
83######### 83#########
84alias wget="wget -c --tries=10 --timeout=10 --waitretry=30s" 84alias wget="wget -c --tries=10 --timeout=10 --waitretry=30s"
85alias ls="exa -1aFghlU --color=always --sort=name --time-style=iso" 85alias ls="exa -1aFghlU --color=always --sort=name --time-style=iso"
86######################################################################### 86########################################################################