From 5c27701cc28909a9e7405565ca6e6985d7483155 Mon Sep 17 00:00:00 2001 From: Jacob McDonnell Date: Thu, 29 Dec 2022 17:46:22 -0500 Subject: added mpd config --- .config/shells/aliasrc | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to '.config/shells/aliasrc') diff --git a/.config/shells/aliasrc b/.config/shells/aliasrc index 6fd6fb7..df92604 100755 --- a/.config/shells/aliasrc +++ b/.config/shells/aliasrc @@ -7,6 +7,14 @@ then la="ls -Ah" \ ls="ls -h" \ l="ls -lAh" +# Linux has --color +elif [[ "$(uname -s)" == "Linux" ]] +then + alias \ + la="ls -Ah --color" \ + ls="ls -h --color" \ + l="ls -lAh --color" +# macOS has -G else alias \ la="ls -AhG" \ @@ -27,6 +35,8 @@ alias \ zshup="source $HOME/.config/shells/zsh/.zshrc" \ gc="git clone" \ gu="git add -u" \ + ga="git commit -a" \ + gp="git push" \ m="micro" \ v="nvim" \ python="python3.10" \ -- cgit v1.2.3