-
Notifications
You must be signed in to change notification settings - Fork 0
openSUSE Tumbleweed
Nikhil Prabhu edited this page Mar 27, 2026
·
5 revisions
- Open the file
/etc/fonts/local.confand add the following content:
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
<fontconfig>
<alias>
<family>serif</family>
<prefer>
<family>Noto Sans</family>
<family>Noto Color Emoji</family>
</prefer>
</alias>
<alias>
<family>sans-serif</family>
<prefer>
<family>Noto Sans</family>
<family>Noto Color Emoji</family>
</prefer>
</alias>
<alias>
<family>monospace</family>
<prefer>
<family>Noto Sans</family>
<family>Noto Color Emoji</family>
</prefer>
</alias>
<dir>~/.fonts</dir>
</fontconfig>- Save the file, and run the following command:
fc-cache -f -v
- Open the file
/etc/cups/cups-files.confand find the line that starts withSystemGroup. By default, its value is set to justroot. - Modify this line to add the
wheelgroup to it.SystemGroup wheel root
- Save the file and restart the CUPS service:
sudo systemctl restart cups - Add your user to the
wheelgroup:sudo usermod -a -G wheel $USER - Log out and log in again for the group changes to take effect.
- Run
sudo systemctl edit bluetooth.service - Add the following content to the file:
NOTE: The first blank
[Service] ExecStart= ExecStart=/usr/libexec/bluetooth/bluetoothd --experimental
ExecStart=line is required to tell systemd to ignore the defaultExecStart. - Save and exit, and run:
sudo systemctl daemon-reload sudo systemctl restart bluetooth.service