wish/install.sh

18 lines
358 B
Bash
Raw Normal View History

2019-02-18 12:40:41 +01:00
#!/usr/bin/env bash
curl https://gitlab.com/ceda_ei/wish/-/archive/master/wish-master.tar -o /tmp/wish.tar
2019-03-08 08:19:16 +01:00
mkdir $HOME/.config 2> /dev/null
2019-02-18 12:40:41 +01:00
cd /tmp/
tar xf wish.tar
mv wish-master/ wish/
mv wish/ $HOME/.config/
cat >> ~/.bashrc <<EOF
# Wish
WISH_PLUGINS=(exit_code_smiley bg_jobs date path newline vcs)
WISH_THEME=plain
source ~/.config/wish/wish.sh
EOF