Skip to content

Commit e8cc578

Browse files
author
demonkiller2
committed
added bashrc
1 parent cc8f95f commit e8cc578

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

airootfs/etc/skel/.bashrc

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#
2+
# ~/.bashrc
3+
#
4+
5+
# If not running interactively, don't do anything
6+
[[ $- != *i* ]] && return
7+
8+
alias ls='ls --color=auto'
9+
PS1='[\u@\h \W]\$ '
10+
11+
#Display ISO version and distribution information in short
12+
alias version="sed -n 1p /etc/os-release && sed -n 11p /etc/os-release && sed -n 12p /etc/os-release"
13+
14+
#Pacman Shortcuts
15+
alias sync="sudo pacman -Syyy"
16+
alias install="sudo pacman -S"
17+
alias update="sudo pacman -Syyu"
18+
alias search="sudo pacman -Ss"
19+
alias search-local="sudo pacman -Qs"
20+
alias pkg-info="sudo pacman -Qi"
21+
alias local-install="sudo pacman -U"
22+
alias clr-cache="sudo pacman -Scc"
23+
alias unlock="sudo rm /var/lib/pacman/db.lck"
24+
alias remove="sudo pacman -R"
25+
alias autoremove="sudo pacman -Rns"

0 commit comments

Comments
 (0)