mirror of https://github.com/jcmdln/gein
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
578 B
19 lines
578 B
#!/bin/env sh |
|
# |
|
# /usr/local/sbin/gein-extras |
|
# |
|
|
|
|
|
read -ep "Install gein-extras? [Yes/No]: " Install && \ |
|
if $Install | grep -iq "^n"; then exit; fi |
|
|
|
|
|
Wget="wget -q" |
|
Base_URL="https://raw.githubusercontent.com/jcmdln/gein/master" |
|
|
|
$Wget $Base_URL/etc/emacs/default.el -O /etc/emacs/default.el |
|
$Wget $Base_URL/etc/profile -O /etc/sudoers |
|
$Wget $Base_URL/etc/profile.d/alias.sh -O /etc/profile.d/alias |
|
$Wget $Base_URL/etc/sudoers -O /etc/sudoers |
|
$Wget $Base_URL/etc/tmux.conf -O /etc/tmux.conf |
|
$Wget $Base_URL/etc/vimrc -O /etc/vimrc
|
|
|