Initial commit
This commit is contained in:
commit
56ed33c8f7
19 changed files with 151 additions and 0 deletions
BIN
setup/programs/package_manager/apt/.DS_Store
vendored
Normal file
BIN
setup/programs/package_manager/apt/.DS_Store
vendored
Normal file
Binary file not shown.
3
setup/programs/package_manager/apt/others/firefox.sh
Normal file
3
setup/programs/package_manager/apt/others/firefox.sh
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
sudo add-apt-repository ppa:mozillateam/ppa
|
||||
sudo apt update
|
||||
sudo apt install firefox
|
||||
5
setup/programs/package_manager/apt/others/i3.sh
Normal file
5
setup/programs/package_manager/apt/others/i3.sh
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
/usr/lib/apt/apt-helper download-file https://debian.sur5r.net/i3/pool/main/s/sur5r-keyring/sur5r-keyring_2023.02.18_all.deb keyring.deb SHA256:a511ac5f10cd811f8a4ca44d665f2fa1add7a9f09bef238cdfad8461f5239cc4
|
||||
$ sudo apt install ./keyring.deb
|
||||
$ echo "deb http://debian.sur5r.net/i3/ $(grep '^DISTRIB_CODENAME=' /etc/lsb-release | cut -f2 -d=) universe" | sudo tee /etc/apt/sources.list.d/sur5r-i3.list
|
||||
$ sudo apt update
|
||||
$ sudo apt install i3
|
||||
7
setup/programs/package_manager/apt/others/neovim.sh
Normal file
7
setup/programs/package_manager/apt/others/neovim.sh
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim.appimage
|
||||
chmod u+x nvim.appimage
|
||||
./nvim.appimage --appimage-extract
|
||||
./squashfs-root/AppRun --version
|
||||
sudo mv squashfs-root /
|
||||
sudo ln -s /squashfs-root/AppRun /usr/bin/nvim
|
||||
nvim
|
||||
3
setup/programs/package_manager/apt/others/thunderbird.sh
Normal file
3
setup/programs/package_manager/apt/others/thunderbird.sh
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
sudo add-apt-repository ppa:mozillateam/ppa
|
||||
sudo apt update
|
||||
sudo apt install thunderbird
|
||||
3
setup/programs/package_manager/apt/others/zotero.sh
Normal file
3
setup/programs/package_manager/apt/others/zotero.sh
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
wget -qO- https://raw.githubusercontent.com/retorquere/zotero-deb/master/install.sh | sudo bash
|
||||
sudo apt update
|
||||
sudo apt install zotero
|
||||
23
setup/programs/package_manager/apt/packages.sh
Normal file
23
setup/programs/package_manager/apt/packages.sh
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
function install {
|
||||
which $1 &> /dev/null
|
||||
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "Installing: ${1}..."
|
||||
sudo apt install -y $1
|
||||
else
|
||||
echo "Already installed: ${1}"
|
||||
fi
|
||||
}
|
||||
|
||||
|
||||
|
||||
apt_packages = (curl exfat-utils git htop tmux gimp inkscape texlive-full stow vlc blender gparted docker.io docker-compose python3-pip wget tree)
|
||||
|
||||
sudo apt update
|
||||
|
||||
for package in "${apt_packages}"
|
||||
do
|
||||
install ${package}
|
||||
done
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue