OSDN Git Service

2021.01.14 Update
[rebornos/cnchi-gnome-osdn.git] / Cnchi / bashrc
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 alias pacrepo='sudo reflector -l 20 -f 10 --save /etc/pacman.d/mirrorlist'
12 alias pacman='sudo pacman'
13 alias journalctl='sudo journalctl'
14 alias pacu='sudo pacman -Syu --noconfirm'
15 alias auru='yaourt -Syua --noconfirm'
16 alias systemctl='sudo systemctl'
17 alias se='ls /usr/bin | grep'
18 alias update-grub=' grub-mkconfig -o /boot/grub/grub.cfg'
19
20 export EDITOR=nano
21 export QT_STYLE_OVERRIDE=gtk
22 export QT_SELECT=qt5
23
24 if [[ $LANG = '' ]]; then
25         export LANG=en_US.UTF-8
26 fi
27
28 neofetch
29
30 path() ( IFS=: ; printf '%s\n' $PATH ; )