mirror of
https://github.com/mvallim/live-custom-ubuntu-from-scratch.git
synced 2025-08-03 16:33:19 +00:00
Update default_config.sh
This commit is contained in:

committed by
GitHub

parent
565a793466
commit
3d2f41d29d
@ -41,29 +41,57 @@ export TARGET_PACKAGE_REMOVE="
|
|||||||
function customize_image() {
|
function customize_image() {
|
||||||
# install graphics and desktop
|
# install graphics and desktop
|
||||||
apt-get install -y \
|
apt-get install -y \
|
||||||
plymouth-themes \
|
plymouth-themes \
|
||||||
ubuntu-gnome-desktop \
|
ubuntu-gnome-desktop \
|
||||||
ubuntu-gnome-wallpapers
|
ubuntu-gnome-wallpapers
|
||||||
|
|
||||||
# useful tools
|
# useful tools
|
||||||
apt-get install -y \
|
apt-get install -y \
|
||||||
clamav-daemon \
|
clamav-daemon \
|
||||||
terminator \
|
terminator \
|
||||||
apt-transport-https \
|
apt-transport-https \
|
||||||
curl \
|
curl \
|
||||||
vim \
|
vim \
|
||||||
nano \
|
nano \
|
||||||
less
|
less
|
||||||
|
|
||||||
|
### Install Visual Studio Code
|
||||||
|
|
||||||
|
# download and install the key
|
||||||
|
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
|
||||||
|
|
||||||
|
install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d/
|
||||||
|
|
||||||
|
echo "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list
|
||||||
|
|
||||||
|
rm microsoft.gpg
|
||||||
|
|
||||||
|
# then update the package cache and install the package using
|
||||||
|
apt-get update
|
||||||
|
|
||||||
|
apt-get install -y code
|
||||||
|
|
||||||
|
### Install Google Chrome
|
||||||
|
|
||||||
|
# download and install the key
|
||||||
|
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
|
||||||
|
|
||||||
|
echo "deb http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google-chrome.list
|
||||||
|
|
||||||
|
# then update the package cache and install the package using
|
||||||
|
apt-get update
|
||||||
|
|
||||||
|
apt-get install google-chrome-stable
|
||||||
|
|
||||||
# purge
|
# purge
|
||||||
apt-get purge -y \
|
apt-get purge -y \
|
||||||
transmission-gtk \
|
transmission-gtk \
|
||||||
transmission-common \
|
transmission-common \
|
||||||
gnome-mahjongg \
|
gnome-mahjongg \
|
||||||
gnome-mines \
|
gnome-mines \
|
||||||
gnome-sudoku \
|
gnome-sudoku \
|
||||||
aisleriot \
|
aisleriot \
|
||||||
hitori
|
hitori
|
||||||
}
|
}
|
||||||
|
|
||||||
# Used to version the configuration. If breaking changes occur, manual
|
# Used to version the configuration. If breaking changes occur, manual
|
||||||
|
Reference in New Issue
Block a user