minor tweaks...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2022-07-23 11:20:33 +03:00
parent 8fbaf6d8dd
commit 46f43c2ca3

View File

@ -61,7 +61,6 @@ FEATURES=(
dnf dnf
flatpak flatpak
snap
npm npm
start-services start-services
@ -116,7 +115,6 @@ PKG_DNF=(
youtube-dl qbittorrent youtube-dl qbittorrent
# tools... # tools...
snapd
openssl gpm openssl gpm
mc tmux bat htop mc tmux bat htop
keepassxc keepassxc
@ -273,15 +271,14 @@ function feature-npm(){
function feature-flatpak(){ function feature-flatpak(){
@ sudo flatpak remote-add --if-not-exists flathub \ @ sudo flatpak remote-add --if-not-exists flathub \
https://flathub.org/repo/flathub.flatpakrepo https://flathub.org/repo/flathub.flatpakrepo
@setupList sudo flatpak install - ${PKG_FLATPAK[@]} @setupList sudo flatpak install - ${PKG_FLATPAK[@]}
} }
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
function feature-snap(){ function feature-snap(){
@ sudo dnf install snapd
@ sudo ln -s /var/lib/snapd/snap /snap @ sudo ln -s /var/lib/snapd/snap /snap
@setupList sudo snap install - ${PKG_SNAP[@]} @setupList sudo snap install - ${PKG_SNAP[@]}
} }