added go and gum...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2023-01-15 06:32:20 +03:00
parent f87ccf9202
commit d922f0a5d0

View File

@ -153,8 +153,9 @@ PKG_DNF=(
# dev... # dev...
vifm vifm
git nodejs git
p7zip zip unrar p7zip zip unrar
nodejs golang
# media... # media...
vlc mpv vlc mpv
@ -204,6 +205,10 @@ PKG_SNAP=(
snap-store snap-store
) )
PKG_GO=(
github.com/charmbracelet/gum@latest
)
SERVICES_START=( SERVICES_START=(
crond sshd gpm crond sshd gpm
@ -352,6 +357,13 @@ function feature-snap(){
} }
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
function feature-go(){
@ sudo dnf install golang
@setupList sudo go install - ${PKG_GO[@]}
}
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
function feature-start-services(){ function feature-start-services(){
@setupList sudo systemctl start - ${SERVICES_START[@]} @setupList sudo systemctl start - ${SERVICES_START[@]}