some bug fixed + android-studio added

This commit is contained in:
Francois B 2018-02-12 18:39:41 +01:00
parent a7a1ceb34c
commit dee0e824a1
2 changed files with 23 additions and 11 deletions

View file

@ -889,28 +889,34 @@ function installPyCharmMenu () {
}
#
# install Pycharm Apps (headless)
# install Visual Studio Code Apps (headless)
#
function installVisualStudioCode () {
msg "Installing PyCharm"
msg "Installing Visual Studio Code"
installAppsFromList code
}
#
# install Pycharm Apps (Menu)
# install Visual Studio Code Apps (Menu)
#
function installVisualStudioCode () {
function installVisualStudioCodeMenu () {
installAppsFromListMenu code
}
#TODO:
#
# install Android-Studio Apps (headless)
#
function installAndroidStudio () {
if which umake >/dev/null; then
msg "Umake installing : Android-Studio"
sudo umake android android-studio
fi
msg "Installing Android-Studio"
installAppsFromList android-studio
}
#
# install Android-Studio Apps (Menu)
#
function installAndroidStudioMenu () {
installAppsFromListMenu android-studio
#
# install SublimeText Apps (headless)
#

View file

@ -402,7 +402,8 @@ qttools5-doc;apt;qt;qttools5-doc
qttools5-dev-tools;apt;qt;qttools5-dev-tools
qttools5-examples;apt;qt;qttools5-examples
qttools5-doc-html;apt;qt;qttools5-doc-html
fbreader;apt;ebook;fbreader"
fbreader;apt;ebook;fbreader
android-studio;apt;android-studio;android-studio"
#-----------------------------------------------------------------------------#
# Specific Repo list and functions #
@ -418,7 +419,8 @@ libreoffice6:addSpecificRepo_Libreoffice6
winehq-devel:addSpecificRepo_Wine
mongodb-org;addSpecificRepo_MongoDB3CE
gyazo;addSpecificRepo_Gyazo
code;addSpecificRepo_VSCode"
code;addSpecificRepo_VSCode
android-studio;addSpecificRepo_AndroidStudio"
#
# Gyazo
@ -477,6 +479,10 @@ function addSpecificRepo_VSCode () {
"deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main"
}
function addSpecificRepo_AndroidStudio () {
addPPA "ppa:maarten-fonville/android-studio"
}
#-----------------------------------------------------------------------------#
# Package post install functions list #
#-----------------------------------------------------------------------------#