mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-29 11:36:16 +01:00
27 lines
324 B
Bash
Executable file
27 lines
324 B
Bash
Executable file
#!/bin/bash
|
|
|
|
declare -a PACKAGES=(
|
|
"cpupower"
|
|
"qt5-tools"
|
|
"vscode"
|
|
"kde5"
|
|
"xorg"
|
|
"konsole"
|
|
"dolphin"
|
|
"rsync"
|
|
"xorg"
|
|
"kde5"
|
|
"google-fonts-ttf"
|
|
"upower"
|
|
"vlc"
|
|
"libva"
|
|
"libva-intel-driver"
|
|
"autofs"
|
|
"pulseaudio"
|
|
"gvfs"
|
|
"htop"
|
|
"icoutils"
|
|
)
|
|
|
|
echo "${PACKAGES[@]}"
|