21 lines
738 B
Bash
21 lines
738 B
Bash
# Begin ~/.bashrc
|
|
# Written for Beyond Linux From Scratch
|
|
# by James Robertson <jameswrobertson@earthlink.net>
|
|
|
|
# Personal aliases and functions.
|
|
|
|
# Personal environment variables and startup programs should go in
|
|
# ~/.bash_profile. System wide environment variables and startup
|
|
# programs are in /etc/profile. System wide aliases and functions are
|
|
# in /etc/bashrc.
|
|
|
|
if [ -f "/etc/bashrc" ] ; then
|
|
source /etc/bashrc
|
|
fi
|
|
|
|
# Set up user specific i18n variables
|
|
#export LANG=<ll>_<CC>.<charmap><@modifiers>
|
|
alias mpv='/usr/bin/mpv --vo=gpu --gpu-context=wayland --hwdec=auto' #hw decoding + opengl, because vulkan needs more watts
|
|
alias mpv-yt='mpv --ytdl-format="bestvideo[ext=mp4][height<=?1080]+bestaudio[ext=m4a]"'
|
|
|
|
# End ~/.bashrc
|