-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathubuntu_desktop_configuration.sh
74 lines (61 loc) · 1.66 KB
/
ubuntu_desktop_configuration.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
62
63
64
65
66
67
68
69
70
71
72
73
74
#! /bin/bash
for file in lib/*.sh; do source $file; done
green_msg "....... Soft and tools installation .......\n\n"
select_text_color
###### SOFT ######
add_soft_repositories &&
install tmux terminator sublime-text-installer skype gparted geary vlc rar &&
install wine playonlinux &&
install nemo nemo-fileroller &&
install firefox devilspie google-chrome-stable chromium-browser opera &&
install grub-customizer gimp unetbootin &&
install virtualbox vagrant &&
install xbindkeys xbindkeys-config &&
###### TOOLS ######
install git-all &&
install zsh git-core &&
install cmake &&
install_oh_my_zsh &&
install build-essential libgl1-mesa-dev && # qt
install ssh gnome-alsamixer &&
install_java_with_elastic &&
install_helping_tools &&
install_mysql &&
install_pg &&
install libsqlite3-dev && #sqlite dependencies
###### CONFIGS ######
set_default_programs &&
install_subl_package_control &&
install_subl_abgrammer_theme &&
configure_subl &&
configure_skype &&
configure_terminator &&
configure_zsh &&
configure_git &&
configure_firefox &&
configure_xbindkeys &&
disable_apport &&
disable_caps_lock_on_startup &&
remove update-notifier emacs24 emacs &&
###### GUI ######
install numix-icon-theme-circle &&
set_numix_icons &&
show_date_and_seconds_in_top_bar &&
set_system_shortcuts &&
###### LNG ######
install libgdbm-dev libncurses5-dev automake libtool bison libffi-dev libgmp-dev libreadline-dev &&
install python3.5 &&
install_nodejs &&
install_rbenv &&
install_ruby_and_rails &&
###### SHUTDOWN ######
change_shell_to_zsh
link_to_zukitre_theme
red_msg "Are you ready for shutdown?[y/..]"
read shutdown_answer
if [ "$shutdown_answer" = "y" ]
then
sudo shutdown -r 0
else
exit
fi