31 lines
687 B
Bash
31 lines
687 B
Bash
#!/bin/sh
|
|
|
|
#########################################
|
|
######## Debian Repository ##############
|
|
#########################################
|
|
|
|
#-- WezTerm
|
|
zypper -n install wezterm
|
|
|
|
#-- Flatpak Gnome Software Plugin --#
|
|
zypper -n install discover6
|
|
|
|
#-- Rhythmbox --#
|
|
zypper -n install rhythmbox
|
|
|
|
#-- Nextcloud Desktop --#
|
|
zypper -n install nextcloud-desktop
|
|
|
|
#-- Gnome Web --#
|
|
zypper -n install falkon
|
|
|
|
#-- 1Password --#
|
|
sudo rpm --import https://downloads.1password.com/linux/keys/1password.asc
|
|
zypper addrepo https://downloads.1password.com/linux/rpm/stable/x86_64 1password
|
|
sudo zypper install 1password
|
|
|
|
#-- Ollama 00--#
|
|
#-- Local llm
|
|
curl -fsSL https://ollama.com/install.sh | sh
|
|
|