Added desktop and server application syncing
This commit is contained in:
parent
75c3a1102f
commit
9964c211c5
65
desktop.txt
Normal file
65
desktop.txt
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
#sudo apt-get update;sudo apt-get upgrade;sudo apt-get install $(grep -vE "^\s*#" apps.txt | tr "\n" " ")
|
||||||
|
#apt-get remove ubuntuone* python3-oneconf
|
||||||
|
synapse
|
||||||
|
synaptic
|
||||||
|
#python3.2
|
||||||
|
python-pip
|
||||||
|
python-glade2
|
||||||
|
#pip install twisted argparse pygments
|
||||||
|
vim
|
||||||
|
meld
|
||||||
|
compiz-plugins-extra
|
||||||
|
compizconfig-settings-manager
|
||||||
|
audacity
|
||||||
|
vlc
|
||||||
|
gimp
|
||||||
|
cups-pdf
|
||||||
|
filezilla
|
||||||
|
ntp
|
||||||
|
screen
|
||||||
|
tmux
|
||||||
|
subversion
|
||||||
|
git
|
||||||
|
orpie
|
||||||
|
terminator
|
||||||
|
ffmpeg
|
||||||
|
winff
|
||||||
|
youtube-dl
|
||||||
|
tasksel
|
||||||
|
#tasksel install lamp-server
|
||||||
|
php5-json
|
||||||
|
php5-gd
|
||||||
|
php-soap
|
||||||
|
bum
|
||||||
|
cplay
|
||||||
|
openssh-server
|
||||||
|
alien
|
||||||
|
ubuntu-restricted-extras
|
||||||
|
lynx-cur
|
||||||
|
unzip
|
||||||
|
#openjdk7-jre
|
||||||
|
docky
|
||||||
|
curl
|
||||||
|
wget
|
||||||
|
kdenlive
|
||||||
|
gparted
|
||||||
|
trash-cli
|
||||||
|
pidgin
|
||||||
|
diodon
|
||||||
|
orpie
|
||||||
|
mysql-workbench
|
||||||
|
synergy
|
||||||
|
wireshark
|
||||||
|
cplay
|
||||||
|
shutter
|
||||||
|
wine
|
||||||
|
sshfs
|
||||||
|
gtk-redshift
|
||||||
|
lm-sensors
|
||||||
|
unetbootin
|
||||||
|
#clemetine
|
||||||
|
#IN STARTUP ITEMS: gtk-redshift -l 36.3:-80.3 -t 6500:4000
|
||||||
|
#sshfs stonewareslord@10.0.1.201:/var/www/ /mnt
|
||||||
|
#FOR CAFFEINE sudo add-apt-repository ppa:caffeine-developers/ppa
|
||||||
|
#caffeine
|
||||||
|
#variety owncloud-client
|
31
server.txt
Normal file
31
server.txt
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
tasksel
|
||||||
|
php5-gd
|
||||||
|
php5-curl
|
||||||
|
openssh-server
|
||||||
|
lynx-cur
|
||||||
|
unzip
|
||||||
|
curl
|
||||||
|
wget
|
||||||
|
parted
|
||||||
|
finch
|
||||||
|
sshfs
|
||||||
|
php5-json
|
||||||
|
php5-gd
|
||||||
|
orpie
|
||||||
|
libpython2.6
|
||||||
|
python-simplejson
|
||||||
|
vim
|
||||||
|
python-pip
|
||||||
|
subversion
|
||||||
|
php-soap
|
||||||
|
orpie
|
||||||
|
aptitude
|
||||||
|
screen
|
||||||
|
tmux
|
||||||
|
git
|
||||||
|
subversion
|
||||||
|
ffmpeg
|
||||||
|
bum
|
||||||
|
alien
|
||||||
|
lynx-cur
|
||||||
|
lm-sensors
|
12
sync.sh
12
sync.sh
@ -1,4 +1,4 @@
|
|||||||
while getopts :bo:t option
|
while getopts :b:o:t:ds option
|
||||||
do
|
do
|
||||||
case "$option" in
|
case "$option" in
|
||||||
b)
|
b)
|
||||||
@ -13,6 +13,16 @@ do
|
|||||||
trash ~/.tmux.conf
|
trash ~/.tmux.conf
|
||||||
ln -s ${PWD}/tmux.conf ~/.tmux.conf
|
ln -s ${PWD}/tmux.conf ~/.tmux.conf
|
||||||
;;
|
;;
|
||||||
|
d)
|
||||||
|
#Install desktop applications
|
||||||
|
echo "Preparing desktop installation"
|
||||||
|
sudo apt-get update;sudo apt-get upgrade;sudo apt-get install $(grep -vE "^\s*#" desktop.txt | tr "\n" " ")
|
||||||
|
;;
|
||||||
|
s)
|
||||||
|
#Install server applications
|
||||||
|
echo "Preparing server installation"
|
||||||
|
sudo apt-get update;sudo apt-get upgrade;sudo apt-get install $(grep -vE "^\s*#" server.txt | tr "\n" " ")
|
||||||
|
;;
|
||||||
o)
|
o)
|
||||||
exit 0
|
exit 0
|
||||||
;;
|
;;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user