5 lines
266 B
Bash
5 lines
266 B
Bash
#!/bin/sh
|
|
baseURL="https://raw.githubusercontent.com/sup39/zsh-setup/master"
|
|
[ -f $HOME/.zshrc ] || curl $baseURL/zshrc -o $HOME/.zshrc
|
|
[ -f $HOME/.zshenv ] || curl $baseURL/zshenv -o $HOME/.zshenv
|
|
[ -f $HOME/.screenrc ] || curl $baseURL/screenrc -o $HOME/.screenrc
|