34 lines
984 B
Bash
34 lines
984 B
Bash
#!/bin/sh
|
|
|
|
#########################################
|
|
######## Debian Repository ##############
|
|
#########################################
|
|
|
|
#-- WezTerm
|
|
curl -fsSL https://apt.fury.io/wez/gpg.key | sudo gpg --yes --dearmor -o /usr/share/keyrings/wezterm-fury.gpg
|
|
echo 'deb [signed-by=/usr/share/keyrings/wezterm-fury.gpg] https://apt.fury.io/wez/ * *' | sudo tee /etc/apt/sources.list.d/wezterm.list
|
|
chmod 644 /usr/share/keyrings/wezterm-fury.gpg
|
|
apt update
|
|
apt install wezterm
|
|
|
|
#-- Flatpak Gnome Software Plugin --#
|
|
apt install gnome-software-plugin-flatpak -y
|
|
|
|
#-- Rhythmbox --#
|
|
apt install rhythmbox -y
|
|
|
|
#-- Nextcloud Desktop --#
|
|
apt install nextcloud-desktop -y
|
|
|
|
#-- Gnome Web --#
|
|
apt install epiphany-browser -y
|
|
|
|
#-- 1Password --#
|
|
wget -O ~/Downloads/1password-latest.deb https://downloads.1password.com/linux/debian/amd64/stable/1password-latest.deb
|
|
apt install -f ~/Downloads/1password-latest.deb -y
|
|
|
|
#-- Ollama 00--#
|
|
#-- Local llm
|
|
curl -fsSL https://ollama.com/install.sh | sh
|
|
|