common scripts cleanup - using proper path to invoke them from within ubuntu configurer
This commit is contained in:
parent
29bc95eadf
commit
24bd6f9d04
6 changed files with 7 additions and 3 deletions
|
@ -14,7 +14,8 @@ install:
|
|||
cd ~/dev
|
||||
git clone git@github.com:cyplo/dotfiles.git
|
||||
cd dotfiles
|
||||
./install_ubuntu #or ./install_fedora
|
||||
./ubuntu/configure_fresh_system
|
||||
# or /debian/.. or /fedora/..
|
||||
|
||||
TODO:
|
||||
* automate adding backports to debian-based distros
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
#!/bin/bash
|
||||
|
||||
#zsh
|
||||
echo
|
||||
echo "configuring settings common among OSes"
|
||||
sudo true
|
||||
#zsh
|
||||
chsh -s `which zsh` $USER
|
||||
|
||||
#submodules
|
|
@ -4,5 +4,6 @@ sudo apt-get dist-upgrade -y
|
|||
sudo apt-get install -y meld whois zsh tmux vim atop aria2 curl pv pixz gajim tor torsocks nodejs npm terminator gsmartcontrol python-pip mesa-utils mesa-utils-extra aptitude p7zip-full p7zip-rar thunderbird mercurial
|
||||
|
||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
$DIR/install_common.sh
|
||||
DIR="$DIR/../"
|
||||
$DIR/common/configure_fresh_system
|
||||
|
||||
|
|
Loading…
Reference in a new issue