blob: 0e51e42b9212b09623cc68862deffcb4e9f3e6f8 (
plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#
#██████╗ █████╗ ███████╗██╗ ██╗██████╗ ██████╗
#██╔══██╗██╔══██╗██╔════╝██║ ██║██╔══██╗██╔════╝
#██████╔╝███████║███████╗███████║██████╔╝██║
#██╔══██╗██╔══██║╚════██║██╔══██║██╔══██╗██║
#██████╔╝██║ ██║███████║██║ ██║██║ ██║╚██████╗
#╚═════╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝
#
# ~/.bashrc
#
# Get the current active terminal
term="$(cat /proc/$PPID/comm)"
# Set a default prompt
p='\[\033[01;37m\]┌─[\[\033[01;32m\]srdusr\[\033[01;37m\]]-[\[\033[01;36m\]archlinux\[\033[01;37m\]]-[\[\033[01;33m\]\W\]\[\033[00;37m\]\[\033
\[\033[01;37m\]└─[\[\033[05;33m\]$\[\033[00;37m\]\[\033[01;37m\]]\[\033[00;37m\] '
# Set transparency and prompt while using st
if [[ $term = "st" ]]; then
transset-df "0.65" --id "$WINDOWID" >/dev/null
# [Your_Name]-----| |=======|------[Your_Distro]
# [Color]--------| | [Color]------| |
# [Style]------------| | | [Style]---------| | |
# V V V V V V
p='\[\033[01;37m\]┌─[\[\033[01;32m\]srdusr\[\033[01;37m\]]-[\[\033[01;36m\]archlinux\[\033[01;37m\]]-[\[\033[01;33m\]\W\[\033[00;37m\]\[\033[01;37m\]]
\[\033[01;37m\]└─[\[\033[05;33m\]$\[\033[00;37m\]\[\033[01;37m\]]\[\033[00;37m\] '
# A A A
# [Style]----| | |-------- [Your_Choice]
# [Color]------------|
fi
# If not running interactively, dont do anything
[[ $- != *i* ]] && return
# My alias commands
alias ls='ls --color=auto -1'
alias shred='shred -uzvn3'
alias wallset='feh --bg-fill'
PS1=$p
# pfetch
. "/home/srdusr/.local/share/cargo/env"
. "$HOME/.cargo/env"
|