mirror of https://gitlab.com/ceda_ei/wish
Add install.sh
This commit is contained in:
parent
66f31d957b
commit
9981f294cd
|
@ -0,0 +1,16 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
curl https://gitlab.com/ceda_ei/wish/-/archive/master/wish-master.tar -o /tmp/wish.tar
|
||||||
|
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
|
||||||
|
|
Loading…
Reference in New Issue