mirror of
https://github.com/ivabus/dotfiles
synced 2024-11-10 02:05:16 +03:00
28 lines
926 B
Bash
28 lines
926 B
Bash
export ZSH="$HOME/.dotfiles/oh-my-zsh"
|
|
|
|
ZSH_THEME="ivabus"
|
|
|
|
plugins=(git zsh-syntax-highlighting)
|
|
|
|
alias upgrade_dotfiles="sh $HOME/.dotfiles/tools/upgrade.sh"
|
|
|
|
source $ZSH/oh-my-zsh.sh
|
|
|
|
alias vi="nvim"
|
|
alias vim="nvim"
|
|
|
|
AVLD=$(cut -d " " -f1-3 /proc/loadavg)
|
|
USEDMEM=$(free -h | grep Mem | awk '{print $3 " / " $2}')
|
|
USEDSWAP=$(free -h | grep Swap | awk '{ print $3 " / " $2}')
|
|
USEDSTRG=$(df / -h | tail -n 1 | awk '{print $3}')
|
|
USEDSTRGPERC=$(df / -h | tail -n 1 | awk '{print $5}')
|
|
STRG=$(df / -h | tail -n 1 | awk '{print $2}')
|
|
UPTIME=$(uptime -p)
|
|
|
|
printf "$fg[green]$(whoami)@$(hostnamectl hostname)$reset_color\n"
|
|
printf "$fg[blue]system load:$reset_color\t${AVLD}\n"
|
|
printf "$fg[blue]memory usage:$reset_color\t${USEDMEM}\n"
|
|
printf "$fg[blue]usage of /:$reset_color\t${USEDSTRGPERC}% (${USEDSTRG}/${STRG})\n"
|
|
printf "$fg[blue]swap usage:$reset_color\t${USEDSWAP}\n"
|
|
printf "$fg[blue]uptime:$reset_color\t\t${UPTIME}\n"
|