88 lines
2.1 KiB
Bash
88 lines
2.1 KiB
Bash
#!/bin/sh
|
|
|
|
[ -x "$(command -v nvim)" ] && alias vim="nvim" vimdiff="nvim -d"
|
|
|
|
alias e="$EDITOR" v="$EDITOR"
|
|
alias mpvgui='mpv --player-operation-mode=pseudo-gui'
|
|
alias wget='wget --hsts-file="$XDG_DATA_HOME/wget-hsts"'
|
|
alias adb='HOME="$XDG_DATA_HOME"/android adb'
|
|
alias nvidia-settings='nvidia-settings --config="$XDG_CONFIG_HOME"/nvidia/settings'
|
|
|
|
alias ll='ls -l' la='ls -al' l='ls -CF' lh='ls -lh'
|
|
alias ls="ls -hN --color=auto --group-directories-first"
|
|
alias grep="grep --color=auto"
|
|
alias diff="diff --color=auto"
|
|
|
|
gacp() {
|
|
git add .
|
|
local var="$@"
|
|
if [ $(echo "$var" | wc -c) -gt 70 ]; then
|
|
echo "Maximum characters: 72"
|
|
return 1
|
|
fi
|
|
git commit -m "$var" -S
|
|
git push
|
|
}
|
|
|
|
gac() {
|
|
git add .
|
|
local var="$@"
|
|
if [ $(echo "$var" | wc -c) -gt 70 ]; then
|
|
echo "Maximum characters: 72"
|
|
return 1
|
|
fi
|
|
git commit -m "$var" -S
|
|
}
|
|
|
|
gcmp() {
|
|
local var="$@"
|
|
if [ $(echo "$var" | wc -c) -gt 70 ]; then
|
|
echo "Maximum characters: 72"
|
|
return 1
|
|
fi
|
|
git commit -m "$var" -S
|
|
git push
|
|
}
|
|
|
|
alias exiftcl='exiftool -all='
|
|
alias exift='exiftool'
|
|
alias upgraded='grep -i upgraded /var/log/pacman.log | tac | less'
|
|
alias installed='grep -i installed /var/log/pacman.log | tac | less'
|
|
alias mirrors='reflector --country Austria --protocol https --sort rate --save /etc/pacman.d/mirrorlist'
|
|
alias open='xdg-open $(fzf)'
|
|
alias o='xdg-open'
|
|
alias zat='zathura --fork'
|
|
alias trash-dir='cd $HOME/.local/share/Trash'
|
|
alias val='valgrind --leak-check=full > valgrind.output 2>&1'
|
|
alias copy='xclip -selection clipboard'
|
|
|
|
function compile() {
|
|
sudo make clean && sudo make install
|
|
}
|
|
|
|
function rcomp() {
|
|
local file="${1//.rmd/}"
|
|
R -e "rmarkdown::render('$file.rmd', 'pdf_document')" && op $file.pdf
|
|
}
|
|
|
|
function fcd() {
|
|
local fd_options fzf_options target
|
|
|
|
fd_options=(
|
|
--hidden
|
|
--type directory
|
|
--exclude '.git'
|
|
)
|
|
|
|
fzf_options=(
|
|
--preview='tree -L 1 {}'
|
|
--bind=ctrl-space:toggle-preview
|
|
--exit-0
|
|
--keep-right
|
|
)
|
|
|
|
target="$(fd . "${1:-.}" "${fd_options[@]}" | fzf "${fzf_options[@]}")"
|
|
|
|
cd "$target" || return 1
|
|
}
|