You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.4 KiB
Bash
51 lines
1.4 KiB
Bash
#
|
|
# ~/.bashrc
|
|
#
|
|
|
|
# If not running interactively, don't do anything
|
|
[[ $- != *i* ]] && return
|
|
|
|
export HISTSIZE=100000
|
|
export HISTFILESIZE=100000
|
|
export PATH="$HOME/.bin:$PATH"
|
|
|
|
# define a default editor
|
|
if [ -x "$(command -v code)" ]; then
|
|
export EDITOR='code -w'
|
|
elif [ -x "$(command -v vim)" ]; then
|
|
export EDITOR=vim
|
|
elif [ -x "$(command -v vi)" ]; then
|
|
export EDITOR=vi
|
|
fi
|
|
|
|
# enable wayland
|
|
export QT_QPA_PLATFORM=wayland-egl
|
|
export MOZ_ENABLE_WAYLAND=1
|
|
|
|
function sqlsetup {
|
|
sudo mount -t drvfs '\\hldnt352.berner.lan\softwaredepot/common/microsoft/sqlsetup/scripts' ~/shares/sqlsetup
|
|
rm -r ~/shares/sqlsetup/*
|
|
cp -a ~/git/sqlsetup/* ~/shares/sqlsetup/
|
|
}
|
|
|
|
source /usr/share/git/git-prompt.sh
|
|
PS1='`[ $? = 0 ] || echo "$? "`[\u@\h \w`__git_ps1 " (%s)"`]\$ '
|
|
|
|
alias ls='ls --color=auto'
|
|
alias ip='ip --color=auto'
|
|
alias autopurge='sudo pacman -Rns $(pacman -Qdtq)'
|
|
alias aur='auracle'
|
|
alias syu='sudo snapshot pre-syu && sudo pacman -Syu; sudo pacman -Rns $(pacman -Qdtq); pacman -Qem; aur sync'
|
|
alias d-u='sudo apt update && sudo apt full-upgrade && sudo apt --purge autoremove && sudo apt clean'
|
|
alias pp='git pull -r && git push'
|
|
alias statdiff='git status && git diff --staged'
|
|
alias gcode='git pull -r && code . && exit'
|
|
|
|
function wttr {
|
|
curl -v "https://wttr.in/$1"
|
|
}
|
|
|
|
# workaround for missing alacritty terminfo on remote terminals
|
|
# https://github.com/alacritty/alacritty/issues/3360#issuecomment-588441023
|
|
alias ssh='TERM=xterm-256color ssh'
|