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.

97 lines
2.0 KiB
Bash

#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
HISTSIZE=10000
HISTFILESIZE=10000
PATH="$HOME/.bin:$PATH"
EDITOR=vim
#enable wayland
QT_QPA_PLATFORM=wayland-egl
GDK_BACKEND=wayland
function q1 {
echo 'Important and Urgent'
if [ $# -ne 1 ]; then
task q1
else
task $1 mod prio:H +urg -unu
task inbox
fi
}
function q2 {
echo 'Important and Not Urgent'
if [ $# -ne 1 ]; then
task q2
else
task $1 mod prio:H +unu -urg
task inbox
fi
}
function q3 {
echo 'Not Important and Urgent'
if [ $# -ne 1 ]; then
task q3
else
task $1 mod prio:L +urg -unu
task inbox
fi
}
function q4 {
echo 'Not Important and Not Urgent'
if [ $# -ne 1 ]; then
task q4
else
task $1 mod prio:L +unu -urg
task inbox
fi
}
function toverview {
q4
echo
q3
echo
q2
echo
q1
echo Inbox
task inbox
}
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/
}
function _df() {
echo "$*"
btrfs filesystem usage "$*" 2> /dev/null | grep -o 'Free .*'
btrfs filesystem df "$*"
echo
}
function dfall() {
_df /hdd
_df /ssd
_df /nvme
}
alias ls='ls --color=auto'
alias ip='ip --color=auto'
PS1='`[ $? = 0 ] || echo "$? "`[\u@\h \w]\$ '
alias autopurge='sudo pacman -Rns $(pacman -Qdtq)'
alias syu='sudo pacman -Syu; sudo pacman -Rns $(pacman -Qdtq); pacman -Qem; auracle 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'
# workaround for missing alacritty terminfo on remote terminals
# https://github.com/alacritty/alacritty/issues/3360#issuecomment-588441023
alias ssh='TERM=xterm-256color ssh'