25 lines
583 B
Bash
Executable File
25 lines
583 B
Bash
Executable File
#!/bin/sh
|
|
|
|
#########################################
|
|
######## OpenSUSE Repository ############
|
|
#########################################
|
|
|
|
#-- Rhythmbox --#
|
|
zypper -n install rhythmbox
|
|
|
|
#-- Nextcloud Desktop --#
|
|
zypper -n install nextcloud-desktop
|
|
|
|
#-- falkon Web --#
|
|
zypper -n install epiphany
|
|
|
|
#-- 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 -n install 1password
|
|
|
|
#-- Ollama --#
|
|
#-- Local llm
|
|
curl -fsSL https://ollama.com/install.sh | sh
|
|
|