-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bashrc
27 lines (16 loc) · 788 Bytes
/
.bashrc
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
#
# Copyright (c) 2024 Jaedeok Kim (jdeokkim@protonmail.com)
#
# ============================================================================>
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
# ============================================================================>
alias ls='ls --color=auto'
# ============================================================================>
alias discord='flatpak run com.discordapp.Discord'
# ============================================================================>
source ~/.git-prompt.sh
PROMPT_COMMAND='PS1_CMD1=$(__git_ps1 " (%s)")';
# PS1='[\u@\h \W]\$ '
PS1='\w\[\e[32m\]${PS1_CMD1}\[\e[0m\] \[\e[92;1m\]\\$\[\e[0m\] '
# ============================================================================>