forked from giswqs/manjaro-linux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
00-install_my_packages
55 lines (49 loc) · 2.35 KB
/
00-install_my_packages
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
#!/bin/bash
echo "Updating mirror and system"
sudo pacman-mirrors --country Canada
#sudo pacman-mirrors -f 0 # remove this - it is overlapping line above
sudo pacman -Syyu --noconfirm # execute this before installing yay
sudo pacman -S yay pamac --noconfirm
# yay -Syyua --noconfirm # remove this - it overlaps the pacman sync command
###############################
echo "Install coding packages"
coding_pkgs="base-devel gcc-fortran r rstudio-desktop-bin visual-studio-code-bin"
yay -S $coding_pkgs --noconfirm
#miniconda part
yay -S miniconda3 --noconfirm
echo "[ -f /opt/miniconda3/etc/profile.d/conda.sh ] && source /opt/miniconda3/etc/profile.d/conda.sh" >> ~/.bashrc
sudo ln -s /opt/miniconda3/etc/profile.d/conda.sh /etc/profile.d/conda.sh
source ~/.bashrc
# deactivate conda by default
# conda config --set auto_activate_base false
###############################
echo "installing internet packages"
internet_pkgs="filezilla google-chrome"
yay -S $internet_pkgs --noconfirm
################################
echo "Install GIS packages"
GIS_pkgs="arrow podofo mariadb libjxl udunits python-owslib python-jinja-time python-psycopg2 python-gdal python-numpy python-pygments qgis grass saga-gis"
yay -S $GIS_pkgs --noconfirm
###############################
echo "Install productivity packages"
prdct_pkgs="flameshot notepadqq zoom slack-desktop inkscape meld libreoffice-fresh"
yay -S $prdct_pkgs --noconfirm
###############################
echo "Install utility packages"
utl_pkgs="gnome-disk-utility"
yay -S $utl_pkgs --noconfirm
###############################
#echo "mount hard drive to /media/hdd using gnome-disk-utility"
#echo "disk - select hard disk - settings - edit mount options - mount point - media/hdd"
#sudo mkdir -p /media/hdd
#sudo chmod -R 777 /media/hdd
#echo "mount hard drive to /media/hdd using gnome-disk-utility"
#echo "disk - select hard disk - settings - edit mount options - mount point - media/hdd"
###############################
#echo "System Settings - Appearance - Breeze Dark"
#echo "System Seetings - Startup and Shutdown - Desktop Session - Uncheck Confirm logout and offer shutdown options"
#echo "Backup system using timeshift"
#yay -S google-chrome --noconfirm
#yay -Sy base-devel --noconfirm
#yay -S linux61 linux61-headers --noconfirm
#echo "Add/Remove Software - Settings - ThirdParty - Enable AUR support - Check for updates"