config

OpenBSD system configuration
git clone git://jacobedwards.org/config
Log | Files | Refs | README

commit d724eaf55b7a181d44ff14c091e146dfa4e68163
parent fa155d19d0059b859e057189e18a33ceddd08d9e
Author: Jacob R. Edwards <jacobouno@protonmail.com>
Date:   Fri, 12 Feb 2021 21:13:54 -0800

Pass arguments to the `m' shell function

Diffstat:
Mmodules/shell/.config/shell/mpc | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/shell/.config/shell/mpc b/modules/shell/.config/shell/mpc @@ -1,6 +1,6 @@ # mpc shell functions -m() { mpc ;} +m() { mpc $* ;} mP() { m searchplay any $* ;} ma() { m add $* ;} mi() { m play $* ;}