|
|
|
@ -192,6 +192,17 @@ systemctl enable NetworkManager.service --now
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Bluetooth
|
|
|
|
|
|
|
|
|
|
```sh
|
|
|
|
|
# Install packages
|
|
|
|
|
pacman -S bluez bluez-utils
|
|
|
|
|
|
|
|
|
|
# Enable the bluetooth service
|
|
|
|
|
systemctl enable bluetooth
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Desktop Environment (KDE)
|
|
|
|
|
|
|
|
|
|
```sh
|
|
|
|
@ -204,7 +215,7 @@ pacman -S pulseaudio
|
|
|
|
|
# > wireplumber
|
|
|
|
|
# > phonon-qt5-gstreamer
|
|
|
|
|
# in the selection prompts
|
|
|
|
|
pacman -S sddm plasma plasma-wayland-session xorg-xwayland xdg-desktop-portal-kde plasma-nm plasma-pa kwallet5 kwallet-pam kwalletmanager
|
|
|
|
|
pacman -S sddm plasma plasma-wayland-session xorg-xwayland xdg-desktop-portal-kde plasma-nm plasma-pa kwallet5 kwallet-pam kwalletmanager bluedevil
|
|
|
|
|
|
|
|
|
|
# Enable sddm on startup
|
|
|
|
|
systemd enable sddm
|
|
|
|
@ -233,3 +244,19 @@ makepkg -si
|
|
|
|
|
### Swap
|
|
|
|
|
|
|
|
|
|
See [BTRFS Swap](https://wiki.archlinux.org/title/Btrfs#Swap_file)
|
|
|
|
|
|
|
|
|
|
### Fonts
|
|
|
|
|
|
|
|
|
|
```sh
|
|
|
|
|
# Fira Code
|
|
|
|
|
pacman -S ttf-firacode-nerd ttf-fira-code
|
|
|
|
|
|
|
|
|
|
# CJK characters
|
|
|
|
|
pacman -S noto-fonts-cjk
|
|
|
|
|
|
|
|
|
|
# Vietnamese
|
|
|
|
|
pacman -S ttf-hannom
|
|
|
|
|
|
|
|
|
|
# Emoji
|
|
|
|
|
pacman -S noto-fonts-emoji
|
|
|
|
|
```
|
|
|
|
|