depend on garuda-bash-config
This commit is contained in:
parent
df57809ba8
commit
509af3db23
2 changed files with 2 additions and 52 deletions
3
PKGBUILD
3
PKGBUILD
|
@ -20,7 +20,8 @@ depends=('btrfsmaintenance'
|
||||||
'preload'
|
'preload'
|
||||||
'prelockd'
|
'prelockd'
|
||||||
'profile-sync-daemon'
|
'profile-sync-daemon'
|
||||||
'zram-generator')
|
'zram-generator'
|
||||||
|
'garuda-bash-config')
|
||||||
optdepends=('ananicy: Automatically set nice levels for apps'
|
optdepends=('ananicy: Automatically set nice levels for apps'
|
||||||
'irqbalance: Better distribute load between CPUs'
|
'irqbalance: Better distribute load between CPUs'
|
||||||
'performance-tweaks: Tuning for best performance'
|
'performance-tweaks: Tuning for best performance'
|
||||||
|
|
|
@ -1,51 +0,0 @@
|
||||||
# If not running interactively, don't do anything
|
|
||||||
[[ $- != *i* ]] && return
|
|
||||||
|
|
||||||
# Load starship prompt if starship is installed
|
|
||||||
if [ -x /usr/bin/starship ]; then
|
|
||||||
__main() {
|
|
||||||
local major="${BASH_VERSINFO[0]}"
|
|
||||||
local minor="${BASH_VERSINFO[1]}"
|
|
||||||
|
|
||||||
if ((major > 4)) || { ((major == 4)) && ((minor >= 1)); }; then
|
|
||||||
source <("/usr/bin/starship" init bash --print-full-init)
|
|
||||||
else
|
|
||||||
source /dev/stdin <<<"$("/usr/bin/starship" init bash --print-full-init)"
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
__main
|
|
||||||
unset -f __main
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Aliases
|
|
||||||
alias dir='dir --color=auto'
|
|
||||||
alias egrep='egrep --color=auto'
|
|
||||||
alias fgrep='fgrep --color=auto'
|
|
||||||
alias fixpacman="sudo rm /var/lib/pacman/db.lck"
|
|
||||||
alias grep='grep --color=auto'
|
|
||||||
alias grubup="sudo update-grub"
|
|
||||||
alias hw='hwinfo --short'
|
|
||||||
alias psmem10='ps auxf | sort -nr -k 4 | head -10'
|
|
||||||
alias psmem='ps auxf | sort -nr -k 4'
|
|
||||||
alias rmpkg="sudo pacman -Rdd"
|
|
||||||
alias tarnow='tar -acf '
|
|
||||||
alias untar='tar -zxvf '
|
|
||||||
alias upd='/usr/bin/update'
|
|
||||||
alias vdir='vdir --color=auto'
|
|
||||||
alias wget='wget -c '
|
|
||||||
|
|
||||||
# Help people new to Arch
|
|
||||||
alias apt-get='man pacman'
|
|
||||||
alias apt='man pacman'
|
|
||||||
alias helpme='cht.sh --shell'
|
|
||||||
alias please='sudo'
|
|
||||||
alias tb='nc termbin.com 9999'
|
|
||||||
|
|
||||||
# Cleanup orphaned packages
|
|
||||||
alias cleanup='sudo pacman -Rns `pacman -Qtdq`'
|
|
||||||
|
|
||||||
# Get the error messages from journalctl
|
|
||||||
alias jctl="journalctl -p 3 -xb"
|
|
||||||
|
|
||||||
# Recent installed packages
|
|
||||||
alias rip="expac --timefmt='%Y-%m-%d %T' '%l\t%n %v' | sort | tail -200 | nl"
|
|
Loading…
Reference in a new issue