-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathubu-post-install.sh
executable file
·61 lines (46 loc) · 2.34 KB
/
ubu-post-install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env bash
## update rep sources
##==============================================================================
apt-get update
## Add software-properties-common and build-essential for use below
## mainly required for the add-apt-repository and building software from source
##==============================================================================
apt-get install -y software-properties-common build-essential python-software-properties
## PPA's
##==============================================================================
#nodejs
add-apt-repository -y ppa:chris-lea/node.js
#UberWriter - Markdown editor (pandoc exports, lots of goodness)
add-apt-repository -y ppa:w-vollprecht/ppa
## update rep sources
##==============================================================================
apt-get update
## Install useful packages:
##==============================================================================
# vim
# git
# vlc
# nodejs
# curl
# gdebi - Command line interface to gdeb installer.
# uberwriter - Markdown editor (pandoc exports, lots of goodness)
# apt-file - Search apt for package based on fileName
# terminator - For multiple terminal sessions in a single window and much more
# vnstat - network usage
# inotify-tools - allows to monitor filesystem events to run a command as soon as file changes
apt-get install -y terminator vim git vlc nodejs curl gdebi uberwriter vnstat inotify-tools
## Install Node Package Manager (NPM)
##==============================================================================
curl -s https://npmjs.org/install.sh | sudo sh
## TODO: Install node modules here
##==============================================================================
## Initialize spf13 vim distro
##==============================================================================
curl http://j.mp/spf13-vim3 -L > spf13-vim.sh && sh spf13-vim.sh
## Create local bin directory
mkdir ~/bin
## Setup up dropbox uploader
##==============================================================================
git clone https://github.com/andreafabrizi/Dropbox-Uploader.git ~/Applications/Dropbox-Uploader
chmod +x ~/Applications/Dropbox-Uploader/dropbox_uploader.sh
ln -s ~/Applications/Dropbox-Uploader/dropbox_uploader.sh ~/bin/dropbox_uploader.sh