Created
June 30, 2019 18:45
-
-
Save pedroarthur/4901a4e30c53ea619b947599740c5a50 to your computer and use it in GitHub Desktop.
Minimal KDE Plasma on Debian Buster
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -x; | |
apt-get update -yq | |
packages=( | |
# can I haz sandwich? | |
aspell-en | |
hunspell-en-us | |
hyphen-en-us | |
aspell-pt-br | |
hunspell-pt-br | |
hyphen-pt-br | |
# Apps | |
ark | |
dolphin | |
gwenview | |
kate | |
kde-spectacle | |
kmenuedit | |
konsole | |
okular | |
qml-module-org-kde-newstuff | |
systemsettings | |
# Services | |
bluedevil | |
khotkeys | |
kscreen | |
kwalletmanager | |
plasma-nm | |
plasma-pa | |
powerdevil | |
polkit-kde-agent-1 | |
upower | |
# DE | |
kwin-x11 | |
plasma-desktop | |
plasma-workspace | |
sddm | |
xorg | |
# Theming | |
breeze-gtk-theme | |
kde-config-gtk-style | |
kde-config-gtk-style-previwe | |
sddm-theme-breeze | |
# Libs and Plugins | |
libqtspell-qt5-0 | |
qtvirtualkeyboard-plugin | |
plasma-browser-integration | |
plasma-runners-addons | |
pulseaudio-module-bluetooth | |
# Ark tooling | |
unzip | |
) | |
arguments=( | |
-y | |
-q | |
--no-install-recommends | |
) | |
apt-get install "${arguments[@]}" "${packages[@]}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment