mirror of
https://gitlab.com/mlunax/dotfiles.git
synced 2025-04-18 16:26:50 +00:00
Add install function to silence coreutils install ugly messages
This commit is contained in:
parent
f5c787af2c
commit
68fda2b3f6
1 changed files with 5 additions and 0 deletions
|
@ -1,6 +1,11 @@
|
|||
#!/usr/bin/env zsh
|
||||
# env, because some OSes keep zsh in /bin (I'm looking at you, Alpine)
|
||||
|
||||
install() {
|
||||
# screw you coreutils install and your ugly messages
|
||||
command install -Dv $@ | grep -v removed
|
||||
}
|
||||
|
||||
cp -v .zshrc $HOME
|
||||
if [ ! -d "${HOME}/.oh-my-zsh" ]; then
|
||||
echo "Installing OMZsh"
|
||||
|
|
Loading…
Add table
Reference in a new issue