42 lines
877 B
Bash
42 lines
877 B
Bash
#!/bin/sh
|
|
|
|
#-- Install system utilities like different shells here
|
|
|
|
#-- Update and Upgrade --#
|
|
zypper update
|
|
|
|
|
|
#-- Git --#
|
|
#-- Git is a version control utility that will be used to pull down dot files and shell scripts
|
|
zypper -n install git
|
|
|
|
#-- Curl --#
|
|
zypper -n install curl
|
|
|
|
#-- Wget --#
|
|
zypper -n install wget
|
|
|
|
#-- zsh --#
|
|
zypper -n install zsh
|
|
|
|
#-- GNU Stow --#
|
|
#-- Stow is a utility that can symlink your dot files to your home directory
|
|
zypper -n install stow
|
|
|
|
|
|
#-- Zoxide --#
|
|
#-- Zoxide is like cd, but juiced.
|
|
zypper -n install zoxide
|
|
|
|
#-- wl-clipboard --#
|
|
#-- for wayland clipboard --#
|
|
zypper -n install wl-clipboard
|
|
|
|
#-- Flatpak and Flathub --#
|
|
zypper -n install flatpak
|
|
|
|
flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo
|
|
|
|
#-- Build Essentials for Lua Language Server--#
|
|
zypper -n install build-essential cmake ninja-build
|