mirror of https://github.com/einverne/dotfiles.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
810 B
39 lines
810 B
5 years ago
|
#!/bin/bash -
|
||
|
#===============================================================================
|
||
|
#
|
||
|
# FILE: ubuntu_init.sh
|
||
|
#
|
||
|
# USAGE: ./ubuntu_init.sh
|
||
|
#
|
||
|
# DESCRIPTION:
|
||
|
#
|
||
|
# OPTIONS: ---
|
||
|
# REQUIREMENTS: ---
|
||
|
# BUGS: ---
|
||
|
# NOTES: ---
|
||
|
# AUTHOR: YOUR NAME (),
|
||
|
# ORGANIZATION:
|
||
|
# CREATED: 08/30/2019 03:21:28 PM
|
||
|
# REVISION: ---
|
||
|
#===============================================================================
|
||
|
|
||
|
set -o nounset # Treat unset variables as an error
|
||
|
|
||
|
|
||
|
sudo apt install -y vim \
|
||
|
exuberant-ctags \
|
||
|
fcitx \
|
||
|
fcitx-rime \
|
||
|
fcitx-module-cloudpinyin \
|
||
|
gimp \
|
||
|
inkscape \
|
||
|
shutter \
|
||
|
audacity \
|
||
|
numix-gtk-theme \
|
||
|
numix-icon* \
|
||
|
ultra-flat-icons-* \
|
||
|
ultra-flat-icons \
|
||
|
uget \
|
||
|
telegram \
|
||
|
fonts-emojione-svginot
|