1
0
forked from extern/nix-config

Add volume aliases to .zsh_aliases

This commit is contained in:
Donovan Glover 2017-11-26 04:12:21 -05:00
parent 696cc0733a
commit 08a83577c6
No known key found for this signature in database
GPG Key ID: 8FC5F7D90A5D8F4D

View File

@ -38,6 +38,15 @@ alias l="ls -1" # Show each output from ls on a separate line
alias lsa="ls -A" # Show hidden files (also known as dotfiles)
alias type="type -a" # Easily see what the command you want to run points to
####################################################################
# Volume aliases
####################################################################
# Usage: vol 10%+ (Increase the volume by 10%), vol 10%- (Decrease by 10%)
# vol 100% (Set the volume to 100%)
alias vol="amixer set 'Master' "
alias volume="vol"
####################################################################
# Miscellaneous aliases
####################################################################