-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdot_bashrc
59 lines (49 loc) · 1.31 KB
/
dot_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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# User specific environment
if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]
then
PATH="$HOME/.local/bin:$HOME/bin:$PATH"
fi
export PATH
# Uncomment the following line if you don't like systemctl's auto-paging feature:
# export SYSTEMD_PAGER=
# User specific aliases and functions
if [ -d ~/.bashrc.d ]; then
for rc in ~/.bashrc.d/*; do
if [ -f "$rc" ]; then
. "$rc"
fi
done
fi
unset rc
# vi movement in bash shell
set -o vi
shopt -s histappend
HISTCONTROL=ignoredup
PROMPT_COMMAND="history -a;history -c;history -r;$PROMPT_COMMAND"
if [ "$PS1" ]; then
PS1="[\u@\h:\l \W]\\$ "
fi
if [ -f /run/.containerenv ]; then
## Distrobox Aliases
alias locate=plocate
alias grep='grep --color=auto'
alias just='just --unstable'
alias l.='ls -d .* --color=auto'
alias ll='ls -l --color=auto'
alias ls='ls --color=auto'
eval "$(starship init bash)";
else
## Host Aliases
alias fs="flatpak search --columns=description,application,version";
mesa=`flatpak info org.freedesktop.Platform.GL.default//22.08 | awk -F': ' '/Version/ {print $2}' | uniq`
echo mesa: $mesa
fi
alias duall="echo 'du -sch .[!.]* * | sort -h'; du -sch .[!.]* * | sort -h"
alias me='ps -fU $(whoami)'
kernel=`uname -r`
echo kernel: $kernel