27 lines
646 B
Bash
27 lines
646 B
Bash
#!/bin/sh
|
|
|
|
#########################################
|
|
######## Debian Repository ##############
|
|
#########################################
|
|
|
|
#-- 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
|
|
|