20 lines
472 B
Bash
20 lines
472 B
Bash
#!/bin/bash
|
|
|
|
#-- install the bare-bones apps to get niri functional
|
|
|
|
#----------------------------#
|
|
#---------- Git -------------#
|
|
#----------------------------#
|
|
zypper -n install git
|
|
|
|
#----------------------------#
|
|
#--- Dank Material Shell ----#
|
|
#----------------------------#
|
|
curl -fsSL https://install.danklinux.com | sh
|
|
|
|
#----------------------------#
|
|
#--------- SDDM -------------#
|
|
#----------------------------#
|
|
zypper -n install sddm
|
|
systemctl enable sddm --force
|