-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLinux
102 lines (85 loc) · 2.42 KB
/
Linux
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
#!/bin/bash
# -*- coding: utf-8 -*-
exit 1 # exit due to script is not ready yet
# check if the user is root
if [[ "${UID}" -ne 0 ]]; then
echo 'Must execute with sudo or root' >&2
exit 1
fi
# check if apt-get available, if not exit
if [[ ! -x $(which apt-get) ]]; then
echo "
apt-get not found, probably you are not using Ubuntu/Debian derivative
I'm personally sorry if you're using other distro." >&2
exit 1
fi
# Update and upgrade packages from apt-get
echo "Updating packages..."
sudo apt-get update
sudo apt-get upgrade -y
# check if pacstall is available, if not install
if [[ ! -x $(which pacstall) ]]; then
echo "Installing pacstall..."
bash -c '$(curl -fsSL https://git.io/JsADh || wget -q https://git.io/JsADh -O -)'
fi
# check if nala is available, if not install via pacstall
if [[ ! -x $(which nala) ]]; then
echo "Installing nala..."
pacstall -I nala-deb
fi
# check if deb-get is available, if not install
if [[ ! -x $(which deb-get) ]]; then
echo "Installing deb-get..."
sudo apt install curl
curl -sL https://raw.githubusercontent.com/wimpysworld/deb-get/main/deb-get | sudo -E bash -s install deb-get
fi
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
# Add ppa
# echo "Adding ppas..."
# declare -a ppa_list
# ppa_list=(
# ppa:
# )
# for ppa in ppa_list; do
# sudo add-apt-repository "${ppa}"
# done
# Install packages from following array with nala
echo "Installing packages with nala..."
declare -a nala_packages
nala_packages=(
wget
)
nala install "${nala_packages[@]}"
# Unsnap packages, script by popey: https://github.com/popey/unsnap
echo "Unsnapping packages..."
git clone https://github.com/popey/unsnap
cd unsnap || return
./unsnap auto
cd ../ && rm -rf unsnap
# Download and install package binaries using wget
echo "Downloading binaries..."
mkdir binary
cd binary || return
declare -a binary_list
binary_list=(
https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
)
for binary in "${binary_list[@]}"; do
curl -O "${binary}"
done
# Install all *.deb files
echo "Installing binaries..."
sudo dpkg -i ./*.deb
sudo dpkg --configure -a
sudo apt-get install -f
cd .. || return
# Download and install flatpak packages
echo "Downloading flatpak packages..."
declare -a flatpak_list
flatpak_list=(
io.github.peazip.PeaZip
io.github.realmazharhusain.GdmSettings
)
for pkgs in "${flatpak_list[@]}"; do
flatpak install flathub "${pkgs}"
done