42 lines
772 B
Bash
Executable File
42 lines
772 B
Bash
Executable File
#!/bin/bash
|
|
|
|
sudo pacman -S --needed \
|
|
firefox \
|
|
nextcloud-client \
|
|
cups \
|
|
wine \
|
|
wine-mono \
|
|
wine-gecko \
|
|
winetricks \
|
|
thunderbird \
|
|
ktouch \
|
|
ktorrent \
|
|
pipewire \
|
|
pipewire-session-manager \
|
|
qpwgraph \
|
|
cifs-utils \
|
|
rbw \
|
|
sddm
|
|
|
|
yay -S \
|
|
catppuccin-sddm-theme-mocha
|
|
|
|
echo "
|
|
[General]
|
|
Numlock=on
|
|
|
|
[Theme]
|
|
ThemeDir=/usr/share/sddm/themes # Standardverzeichnis für Designvorlagen
|
|
Current=catppuccin-mocha-blue # Standardthema
|
|
CursorTheme=breeze_cursors # Mausthema
|
|
FacesDir=/usr/share/sddm/faces # Verzeichnis für Avatarbilder
|
|
|
|
[Users]
|
|
MaximumUID=1100
|
|
HideUsers=mathieu
|
|
" | sudo tee /etc/sddm.conf
|
|
|
|
sudo systemctl disable gdm
|
|
sudo systemctl enable sddm
|
|
|