#
# ~/.bashrc
#

# If not running interactively, don't do anything
[[ $- != *i* ]] && return

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 {
    echo Inbox
    task inbox
    echo
    q1
    echo
    q2
    echo
    q3
    echo
    q4
}

function sqlsetup {
    sudo mount /home/lub/remote/softwaredepot-sqlsetup
    git pull
    git push
    cd ~/remote/softwaredepot-sqlsetup/setup
    git pull
    cd -
}

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'
PS1='`[ $? = 0 ] || echo "$? "`[\u@\h \w]\$ '
alias docker='sudo docker'
alias autopurge='sudo pacman -Rns $(pacman -Qdtq)'
alias syu='sudo pacman -Syu; cower -u'
alias compress-music='/home/lub/git/scripts/compress-music.sh'
alias pp='git pull -r && git push'