-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathubuntu-14.04-gnomeshell-postinstall.cfg
102 lines (83 loc) · 4.15 KB
/
ubuntu-14.04-gnomeshell-postinstall.cfg
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#
# Configuration file
# for the script https://github.com/nicolargo/ubuntupostinstall
#
# Ubuntu version: 14.05
# UI: Gnome Shell
#
# Actions to be executed before all the others steps
# Use && separator if there is more than 1 action
[preactions]
action_dummy = dpkg -l > /tmp/pkg-before.txt
# The repos section
# ppa_xxx = ppa:ppauser/ppaname > Add the ppa to the system
# pkg_xxx = pkglist > Add the package list to the system
# url_xxx = reposurl > Add the repository URL to the system
# key_xxx = key > Add the repository key to the system
[repos]
# Gnome 3/Shell
ppa_gnome3 = ppa:gnome3-team/gnome3
ppa_gnome3_plugins = ppa:webupd8team/gnome3
pkg_gnome3 = gnome-shell ubuntu-gnome-desktop gnome-tweak-tool gnome-documents conky-all ttf-ubuntu-font-family
pkg_gnome3_plugins = `apt-cache search gnome-shell-extension | awk '{ print $1 }' | xargs`
pkg_gnome3_mgse = mgse-bottompanel mgse-menu mgse-windowlist
# Add themes for UI
# Please configure default icons/theme in the gnome3|unity section
ppa_gnome3_themes_1 = ppa:webupd8team/themes
pkg_gnome3_themes_1 = boomerang-gtk-theme faenza-icon-theme
ppa_gnome3_themes_2 = ppa:satyajit-happy/themes
pkg_gnome3_themes_2 = orion-gtk-theme evolve-gtk-theme
# The best terminal in the world
pkg_terminator = terminator
# Spotify
ppa_spotify = "deb http://repository.spotify.com stable non-free"
pkg_spotify = spotify-client-qt
# Handbrake
ppa_handbrake = ppa:stebbins/handbrake-snapshots
pkg_handbrake = handbrake-gtk
# Nautilus extra actions
ppa_nautilusactionsextra = ppa:nae-team/ppa
pkg_nautilusactionsextra = nautilus-actions-extra
# Darktable, deRAWtiser
ppa_darktable = ppa:pmjdebruijn/darktable-release
pkg_darktable = darktable
# Sublime text 3 (sublime but not FOSS)
ppa_sublime = ppa:webupd8team/sublime-text-3
pkg_sublime = sublime-text-installer
# Gimp (latest version)
ppa_gimp = ppa:otto-kesselgulasch/gimp
pkg_gimp = gimp gimp-plugin-registry
# The packages section
# pkgname = pkglist > Add the pkglist to the system
[packages]
ubuntu-restrictive = ubuntu-restricted-extras
development = build-essential vim subversion git git-core rabbitvcs-nautilus anjuta geany ipython python-docutils python-pip python-virtualenv ctags
multimedia = vlc x264 ffmpeg2theora oggvideotools istanbul shotwell mplayer hugin nautilus-image-converter pavucontrol ogmrip transmageddon guvcview wavpack mppenc faac flac vorbis-tools faad lame nautilus-script-audio-convert cheese sound-juicer picard arista milkytracker mypaint libdvdread4
network = iftop ifstat iptraf wireshark tshark arp-scan htop netspeed nmap netpipe-tcp
system = glances terminator preload lsb-core gparted lm-sensors compizconfig-settings-manager hardinfo fortune-mod libnotify-bin compiz-fusion-plugins-extra most tree wallch ccze
security = rkhunter chkrootkit cron-apt fail2ban
web = pidgin pidgin-facebookchat pidgin-plugin-pack flashplugin-downloader xchat ttf-mscorefonts-installer nautilus-dropbox xclip zenity
# The Gnome3 configuration section
# theme = themename > Use the Gnome Shell theme themename
# icons = iconsname > Use the icons theme iconsname
# cursors = cursorssname > Use the cursors theme cursorsname
# conky = cfgfile > .conkyrc URL
[gnome3]
theme = Ambiance
#icons = Faenza
#cursors = DMZ-White
#conky = https://raw.github.com/nicolargo/ubuntupostinstall/master/conkyrc
# The . files section
# Download and install . file on the $HOME folder
[dotfiles]
bashrc = https://raw.github.com/nicolargo/dotfiles/master/bashrc
bashrc_prompt = https://raw.github.com/nicolargo/dotfiles/master/_bashrc.d/bashrc_prompt
bashrc_aliases = https://raw.github.com/nicolargo/dotfiles/master/_bashrc.d/bashrc_aliases
vimrc = https://raw.github.com/vgod/vimrc/master/vimrc
htoprc = https://raw.github.com/nicolargo/dotfiles/master/htoprc
# Actions to be executed after all the others steps
# Use && separator if there is more than 1 action
[postactions]
action_vimcustom = wget https://raw.github.com/vgod/vimrc/master/auto-install.sh && chmod a+x auto-install.sh && ./auto-install.sh && rm -f ./auto-install.sh
action_setright = chown -R $SUDO_USER:$SUDO_USER $HOME/.vimrc $HOME/.vim $HOME/.htoprc
action_dummy = dpkg -l > /tmp/pkg-after.txt