mirror of https://gitlab.com/ceda_ei/wish
22 lines
460 B
Bash
Executable File
22 lines
460 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if hash git; then
|
|
git clone https://gitlab.com/ceda_ei/wish.git $HOME/.config/wish.git
|
|
else
|
|
curl https://gitlab.com/ceda_ei/wish/-/archive/master/wish-master.tar -o /tmp/wish.tar
|
|
mkdir $HOME/.config 2> /dev/null
|
|
cd /tmp/
|
|
tar xf wish.tar
|
|
mv wish-master/ wish/
|
|
mv wish/ $HOME/.config/
|
|
fi
|
|
|
|
cat >> ~/.bashrc <<EOF
|
|
|
|
# Wish
|
|
|
|
WISH_PLUGINS=(exit_code_smiley bg_jobs date path newline vcs)
|
|
WISH_THEME=plain
|
|
source ~/.config/wish/wish.sh
|
|
EOF
|