31 lines
1.0 KiB
Bash
31 lines
1.0 KiB
Bash
#!/bin/sh
|
|
|
|
alias l=lfcd
|
|
alias clip="xclip -selection clipboard"
|
|
alias phone="simple-mtpfs"
|
|
alias bell="paplay /usr/share/sounds/freedesktop/stereo/complete.oga"
|
|
alias usage="du -h -d 1 2> /dev/null | sort -h"
|
|
# alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
|
|
|
|
# For laptop multi-gpu offloading
|
|
alias nvidia_gpu="DRI_PRIME=1 __NV_PRIME_RENDER_OFFLOAD=1 __GLX_VENDOR_LIBRARY_NAME=nvidia"
|
|
|
|
# Opinionated defaults
|
|
alias feh="swallow feh --force-aliasing --draw-exif --scale-down --draw-filename"
|
|
alias ffplay="swallow ffplay $@"
|
|
alias shutdown="shutdown -P now"
|
|
alias untar="tar -xvf $@"
|
|
alias cura="cura5 -platformtheme gtk3"
|
|
|
|
# if lfrun doesn't exist
|
|
# alias l=". ranger"
|
|
|
|
# enable color support of ls and also add handy aliases
|
|
if [ -x /usr/bin/dircolors ]; then
|
|
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
|
|
alias ls='ls --color=auto'
|
|
alias grep='grep --color=auto'
|
|
fi
|
|
|
|
|