26 lines
838 B
Bash
26 lines
838 B
Bash
# ~/.bashrc
|
|
eval "$(starship init bash)"
|
|
clear && nerdfetch
|
|
[[ $- != *i* ]] && return
|
|
alias ls='ls --color=auto'
|
|
alias pacup='sudo pacman -Rns $(pacman -Qdtq)'
|
|
alias grep='grep --color=auto'
|
|
alias pool='clear && asciiquarium'
|
|
alias f='clear && nerdfetch'
|
|
alias bye='sudo shutdown -h now'
|
|
alias loop='sudo reboot'
|
|
alias h='dbus-launch Hyprland'
|
|
alias fonts='fc-list -f "%{family}\n"'
|
|
alias hypr='cd ~/.config/hypr/'
|
|
alias tasks='bpytop'
|
|
alias viruscheck='sudo clamscan -r /'
|
|
alias Docs="cd ~/Documents && nvim"
|
|
alias Settings="cd ~/.config/hypr && nvim"
|
|
export XDG_CURRENT_DESKTOP=Hyprland
|
|
export OZONE_PLATFORM=wayland
|
|
export ENABLE_FEATURES=UseOzonePlatform
|
|
export NVM_DIR="$HOME/.nvm"
|
|
export WALLPAPER_PATH="/home/$USER/wallpapers/walls/1358310.png"
|
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
|
PS1='[\u@\h \W]\$ '
|