wiki/pages/de/desktop/environments/kde.txt

100 lines
2.1 KiB
Plaintext

====== KDE ======
<code>
pacman -S plasma
</code>
<code>
systemctl enable --now sddm
</code>
Das war's eigentlich schon.
Schaue dir die gesamte [[https://archlinux.org/groups/x86_64/kde-applications/|KDE-Software]] liste und die vorgeschlagenen Pakete unten an und installiere, was dir gefällt.
===== xinit =====
Der //Nachteil// dieser Methode ist, dass du dich über das Terminal anmelden musst.
Installiere also ''plasma'' und ''xorg'' wie oben beschrieben und überspringe die ''Aktivierung von sddm'' und mache stattdessen folgendes:
<code>
pacman -S xorg-xinit
</code>
<code>
cp /etc/X11/xinit/xinitrc ~/.xinitrc
</code>
<code>
nano ~/.xinitrc
</code>
Comment out:
<code>
# twm &
# xclock -geometry 50x50-1+1 &
# xterm -geometry 80x50+494+51 &
# xterm -geometry 80x20+494-0 &
# exec xterm -geometry 80x66+0+0 -name login
</code>
<code>
echo "export DESKTOP_SESSION=plasma
exec startplasma-x11" >> ~/.xinitrc
</code>
<code>
echo "if [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then
exec startx
fi" >> ~/.bash_profile
</code>
====== Empfohlene Software ======
Füge die Pakete einfach dem oben genannten ''pacman''-Befehl hinzu.
===== System =====
<code>
networkmanager-openvpn wireguard-tools keepassxc arch-audit konsole keditbookmarks gparted htop dolphin spectacle wget lm_sensors ark kleopatra kate kompare rsync
</code>
===== Audio =====
<code>
pulseaudio pulseaudio-alsa
</code>
===== Multimedia/Graphics =====
<code>
vlc openshot gimp inkscape
</code>
===== Office =====
<code>
thunderbird thunderbird-i18n-de wqy-zenhei ttf-liberation libreoffice-fresh cups cups-pdf xsane system-config-printer kdeconnect firefox okular gwenview
</code>
Wenn du ''cups'' installierst, müsst du auch den Dienst aktivieren:
<code>
systemctl enable --now cups.service
</code>
===== Sonstige =====
<code>
bash-completion cronie
</code>
Füge für ''bash-complition'' folgendes zu deiner ''.bashrc'' hinzu:
<code>
echo "if [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi" >> ~/.bashrc
</code>
Aktiviere service für ''cronie'':
<code>
systemctl enable --now cronie.service
</code>
Siehe auch [[/de/desktop/services/crontab|crontab]].