{"id":123062,"date":"2022-02-16T08:00:00","date_gmt":"2022-02-16T08:00:00","guid":{"rendered":"https:\/\/fedoramagazine.org\/?p=35937"},"modified":"2022-02-16T08:00:00","modified_gmt":"2022-02-16T08:00:00","slug":"how-i-customize-fedora-silverblue-and-fedora-kinoite","status":"publish","type":"post","link":"https:\/\/sickgaming.net\/blog\/2022\/02\/16\/how-i-customize-fedora-silverblue-and-fedora-kinoite\/","title":{"rendered":"How I Customize Fedora Silverblue and Fedora Kinoite"},"content":{"rendered":"<p>Hello everyone. My name is Yasin and I live in Turkey. I am 28 years old and have used Fedora Silverblue for two months and I am an active Fedora Kinoite user. I want to share the information I&#8217;ve learned in the process of using the systems. So I&#8217;ve decided to write this article. I hope you like it. Let&#8217;s get started.<\/p>\n<p> <span id=\"more-35937\"><\/span> <\/p>\n<p>When one says Fedora Linux, the first edition that comes to mind is <a href=\"https:\/\/getfedora.org\/\" target=\"_blank\" rel=\"noreferrer noopener\">Fedora Workstation<\/a>. However, do not overlook the <em>emerging<\/em> editions Fedora Silverblue (featuring the <a href=\"https:\/\/en.wikipedia.org\/wiki\/GNOME\" target=\"_blank\" rel=\"noreferrer noopener\">GNOME<\/a> desktop environment) and Fedora Kinoite (featuring the <a href=\"https:\/\/en.wikipedia.org\/wiki\/KDE\" target=\"_blank\" rel=\"noreferrer noopener\">KDE<\/a> desktop environment). Both of these are <a href=\"https:\/\/blog.verbum.org\/2020\/08\/22\/immutable-%E2%86%92-reprovisionable-anti-hysteresis\/\" target=\"_blank\" rel=\"noreferrer noopener\">reprovisionable<\/a> operating systems based on <a href=\"https:\/\/projectatomic.io\/\" target=\"_blank\" rel=\"noreferrer noopener\">libostree<\/a>. They are created exclusively from official RPM packages from the Fedora Project. In this article, I will demonstrate some common steps you might take after a clean installation of Fedora Silverblue or Fedora Kinoite. Everything listed in this article is optional. Exactly what you want to install or how you want to configure your system will depend on your particular needs. What is demonstrated below is just meant to give you some ideas and to provide some examples.<\/p>\n<p><strong>Disclaimer<\/strong>: <em>Packages from Flathub, RPM Fusion, the Copr build system, GitHub, GitLab, et al. are not managed by the Fedora release team and they do not provide official software builds. Use packages from these sources at your own risk.<\/em><\/p>\n<h2>System upgrades<\/h2>\n<p>Fedora Linux in particular releases feature updates and security updates quite often. So you will want to run the below command regularly to keep your system up-to-date. Open the terminal and enter the following command. Afterwards, restart the computer so the changes will take effect.<\/p>\n<pre class=\"wp-block-preformatted\">$ rpm-ostree upgrade<\/pre>\n<p>If you want to preview which packages will be updated, use the follow command first.<\/p>\n<pre class=\"wp-block-preformatted\">$ rpm-ostree update --preview<\/pre>\n<p>It is also possible to configure automatic updates by editing the <em>rpm-ostreed.conf<\/em> file as demonstrated below.<\/p>\n<pre class=\"wp-block-preformatted\">$ sudo nano \/etc\/rpm-ostreed.conf<\/pre>\n<p>Change <em>AutomaticUpdatePolicy<\/em> to <em>check<\/em>. Then save the change and quit the editor. After that you need to reload <em>rpm-ostree<\/em> and enable the automatic timer.<\/p>\n<pre class=\"wp-block-preformatted\">$ rpm-ostree reload\n$ systemctl enable rpm-ostreed-automatic.timer --now<\/pre>\n<h2>Adding Flatpak remotes and other third-party repositories<\/h2>\n<p>Fedora Silverblue and Fedora Kinoite come preloaded with the basic Fedora Linux repos. In addition, you might want <a href=\"https:\/\/en.wikipedia.org\/wiki\/Flatpak\" target=\"_blank\" rel=\"noreferrer noopener\">Flatpak<\/a>, <a href=\"https:\/\/en.wikipedia.org\/wiki\/RPM_Fusion\" target=\"_blank\" rel=\"noreferrer noopener\">RPM Fusion<\/a> or some <a href=\"https:\/\/copr.fedorainfracloud.org\/\" target=\"_blank\" rel=\"noreferrer noopener\">Copr<\/a> repos.<\/p>\n<h3>Flathub remotes<\/h3>\n<p>Flatpak is at the top of the list of ways to install applications on Fedora Silverblue and Fedora Kinoite because it is container-based and it does not require a reboot after installation. To add some remote software libraries and try it out, open the terminal again and enter the following commands.<\/p>\n<p><strong>Fedora Flatpaks remote<\/strong>:<\/p>\n<pre class=\"wp-block-preformatted\">$ flatpak remote-add --if-not-exists fedora oci+https:\/\/registry.fedoraproject.org<\/pre>\n<p><strong>Flathub remote<\/strong>:<\/p>\n<pre class=\"wp-block-preformatted\">$ flatpak remote-add --if-not-exists flathub https:\/\/flathub.org\/repo\/flathub.flatpakrepo<\/pre>\n<p><strong>Flabhub Beta remote<\/strong>:<\/p>\n<pre class=\"wp-block-preformatted\">$ flatpak remote-add --if-not-exists flathub-beta https:\/\/flathub.org\/beta-repo\/flathub-beta.flatpakrepo<\/pre>\n<p><strong>KDE nightly remote<\/strong>:<\/p>\n<pre class=\"wp-block-preformatted\">$ flatpak remote-add --if-not-exists kdeapps --from https:\/\/distribute.kde.org\/kdeapps.flatpakrepo<\/pre>\n<p><strong>GNOME nightly remote<\/strong>:<\/p>\n<pre class=\"wp-block-preformatted\">$ flatpak&nbsp;remote-add&nbsp;--if-not-exists&nbsp;gnome-nightly&nbsp;https:\/\/nightly.gnome.org\/gnome-nightly.flatpakrepo<\/pre>\n<p>After the repositories are added, you need to enter the code below in order to update the application catalog in the GNOME Software and Discover stores. In this way, you will be able to manage applications directly from the store without going to <a href=\"http:\/\/flathub.org\">flathub.org<\/a>.<\/p>\n<pre class=\"wp-block-preformatted\">$ flatpak update --appstream<\/pre>\n<p>After that, you can use the store to update Flatpak applications, or if you want to update directly from the terminal, you can enter the code below.<\/p>\n<pre class=\"wp-block-preformatted\">$ flatpak update<\/pre>\n<p>If you want to see all installed Flatpaks:<\/p>\n<pre class=\"wp-block-preformatted\">$ flatpak list<\/pre>\n<h3>RPM Fusion repos<\/h3>\n<p>Another remote software library you can add is RPM Fusion. To add it on Fedora Silverblue or Fedora Kinoite, open the terminal, enter the following commands and restart.<\/p>\n<pre class=\"wp-block-preformatted\">$ sudo rpm-ostree install https:\/\/mirrors.rpmfusion.org\/free\/fedora\/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm<\/pre>\n<pre class=\"wp-block-preformatted\">$ sudo rpm-ostree install https:\/\/mirrors.rpmfusion.org\/nonfree\/fedora\/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm<\/pre>\n<h3>Copr repos<\/h3>\n<p>Copr repos are yet another source of applications that can be installed on Fedora Silverblue and Fedora Kinoite. To add the repos, enter commands in the following form.<\/p>\n<pre class=\"wp-block-preformatted\">$ sudo ostree remote add &lt;name-of-repo&gt; &lt;repository-url&gt;<\/pre>\n<p>Example (Heroic Games launcher repo):<\/p>\n<pre class=\"wp-block-preformatted\">$ sudo ostree remote add heroic-games-launcher https:\/\/download.copr.fedorainfracloud.org\/results\/atim\/heroic-games-launcher\/fedora-$releasever-$basearch\/<\/pre>\n<p>If you want another option, you can download the repository configuration file from <a href=\"https:\/\/copr.fedorainfracloud.org\/coprs\/\" target=\"_blank\" rel=\"noreferrer noopener\">Copr<\/a>&#8216;s own site and put it in the <em>\/etc\/yum.repos.d<\/em> folder.<\/p>\n<h2>Examples of popular Flatpak applications<\/h2>\n<p><strong>Libre Office<\/strong><\/p>\n<pre class=\"wp-block-preformatted\">$ flatpak install flathub org.libreoffice.LibreOffice<\/pre>\n<p><strong>Lutris<\/strong><\/p>\n<pre class=\"wp-block-preformatted\">$ flatpak install \u2014user flathub-beta net.lutris.Lutris\/\/beta<\/pre>\n<p><strong>Steam<\/strong><\/p>\n<pre class=\"wp-block-preformatted\">$ flatpak install flathub com.valvesoftware.Steam<\/pre>\n<p><strong>VLC<\/strong><\/p>\n<pre class=\"wp-block-preformatted\">$ flatpak install flathub org.videolan.VLC<\/pre>\n<p><strong>Firefox<\/strong><\/p>\n<pre class=\"wp-block-preformatted\">$ flatpak install flathub org.mozilla.firefox<\/pre>\n<p><strong>Note<\/strong>: <em>Fedora Firefox normally comes preloaded with Fedora Silverblue and Fedora Kinoite. However, the Flatpak version of Firefox has more comprehensive codec support.<\/em><\/p>\n<h2>Installing the Nvidia driver and a specific kernel<\/h2>\n<p>If you have installed RPM Fusion repositories, you can install the Nvidia driver by entering the code below and restarting the computer so the changes will take effect.<\/p>\n<pre class=\"wp-block-preformatted\">$ sudo rpm-ostree install akmod-nvidia xorg-x11-drv-nvidia<\/pre>\n<p>If you are using the Nvidia System Management Interface (nvidia-smi) or CUDA:<\/p>\n<pre class=\"wp-block-preformatted\">$ sudo rpm-ostree install akmod-nvidia xorg-x11-drv-nvidia-cuda<\/pre>\n<p>If you want to install specific kernel, you can always download a kernel from <a href=\"https:\/\/koji.fedoraproject.org\/koji\/packageinfo?packageID=8\" target=\"_blank\" rel=\"noreferrer noopener\">Koji<\/a> and install it on Fedora Silverblue or Fedora Kinoite using the following command:<\/p>\n<pre class=\"wp-block-preformatted\">$ sudo rpm-ostree override replace .\/kernel*.rpm<\/pre>\n<p>If you want to install multiple kernels, you will need to pin your deployment by issuing the <em>ostree admin pin 0 <\/em>command then use the same code above. After restarting, if you pin the new kernel, then you will have two deployments with specific kernels. Remember that you must update them individually because you cannot pin two deployments at the same time.<\/p>\n<h2>Toolbx<\/h2>\n<p>The Toolbx utility is used primarily for CLI apps, development and debugging tools, etc. However, you can install supported any operating system. In this article, I will give an example of Fedora 35 Workstation installation and use. Fedora Silverblue and Fedora Kinoite come preloaded with Toolbx. So you can start directly.<\/p>\n<p>First, create a toolbox.<\/p>\n<pre class=\"wp-block-preformatted\">$ toolbox create<\/pre>\n<p>When the above is complete, enter:<\/p>\n<pre class=\"wp-block-preformatted\">$ toolbox enter<\/pre>\n<p>When you see the code that starts with <em>toolbox<\/em>, then you are in the container operating system. You can list the container(s) by means of:<\/p>\n<pre class=\"wp-block-preformatted\">$ toolbox list<\/pre>\n<p>If you want to remove the container, enter:<\/p>\n<pre class=\"wp-block-preformatted\">$ toolbox rmi &lt;container name&gt;<\/pre>\n<p>If you need more help, enter:<\/p>\n<pre class=\"wp-block-preformatted\">$ toolbox --help<\/pre>\n<p>Thanks to Toolbx, your main operating system will never break. You can pretend to be on Fedora Workstation, install and delete packages, and do things you cannot do on the libostree-based host system. Let\u2019s illustrate with a few examples.<\/p>\n<p>Many users use Toolbx for their developer tools. But it is a really useful tool for regular users as well. For example, you can install Xtreme Download Manager and combine it with Firefox to download content such as music and videos from the internet. It will make your job even easier if you download the file manager before downloading XDM. Now that you are in Toolbx, try installing Nautilus.<\/p>\n<pre class=\"wp-block-preformatted\">$ sudo dnf install nautilus<\/pre>\n<p>After that, you can get XDM from here: <\/p>\n<p><a href=\"https:\/\/github.com\/subhra74\/xdm\/releases\/download\/7.2.11\/xdm-setup-7.2.11.tar.xz\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/github.com\/subhra74\/xdm\/releases\/download\/7.2.11\/xdm-setup-7.2.11.tar.xz<\/a><\/p>\n<p>Start Nautilus with <em>sudo nautilus<\/em> while in Toolbx. Then unarchive XDM, open the folder, right click on some empty space and select <em>Open in Terminal<\/em>. Then enter the below code.<\/p>\n<pre class=\"wp-block-preformatted\">$ su -c .\/install.sh<\/pre>\n<p>Congratulations! You have successfully installed XDM. After that you will need to open XDM, install Firefox and then open XDM again. Finally, you will want to make the XDM plugin available for Firefox.<\/p>\n<pre class=\"wp-block-preformatted\">$ sudo xdm<\/pre>\n<pre class=\"wp-block-preformatted\">$ sudo dnf install firefox<\/pre>\n<pre class=\"wp-block-preformatted\">$ sudo firefox<\/pre>\n<p>A few more example things that you could do in Toolbx include:<\/p>\n<ul>\n<li>Add the repositories from Fedora Silverblue or Fedora Kinoite using the terminal. Alternatively, you could copy the repo files from <em>\/etc\/yum.repos.d<\/em> in Fedora Silverblue or Fedora Kinoite to <em>\/etc\/yum.repos.d<\/em> in Toolbx.<\/li>\n<\/ul>\n<ul>\n<li>Keep the container updated by running <em>sudo dnf update<\/em> periodically. (Tip: For faster downloads, you might want to try adding the <em>fastestmirror=1<\/em> and <em>max_parallel_downloads=10<\/em> options to the container&#8217;s <em>\/etc\/dnf\/dnf.conf<\/em> file.)<\/li>\n<\/ul>\n<ul>\n<li>Use the <em>dnf history<\/em> command to see what changes you&#8217;ve made to the container.<\/li>\n<\/ul>\n<ul>\n<li>You could install multimedia codecs and Windows fonts. But it&#8217;s not necessary because rpm-ostree can handle them and the <em>google-croscore-fonts<\/em> and <em>liberation-fonts<\/em> are both designed to be compatible with the most common MS fonts.<\/li>\n<\/ul>\n<h2>Layering packages<\/h2>\n<p>The package layering method modifies the existing installation. You can permanently install almost any RPM package on Fedora Silverblue or Fedora Kinoite. However, you should only layer packages that you consider essential because, after the layering is complete, you will need to reboot the system before you will be able to use the package. For most packages, I recommend using Toolbx.<\/p>\n<p>Package layering is almost identical to installing a RPM package on Fedora Workstation. It\u2019s just <em>rpm-ostree<\/em> replacing <em>dnf<\/em>. For example:<\/p>\n<pre class=\"wp-block-preformatted\">$ rpm-ostree install htop<\/pre>\n<p>If you want to remove layered packages:<\/p>\n<pre class=\"wp-block-preformatted\">$ rpm-ostree uninstall htop<\/pre>\n<p>If you want to see the all layered packages:<\/p>\n<pre class=\"wp-block-preformatted\">$ rpm-ostree status<\/pre>\n<p>If you want to remove all layered packages:<\/p>\n<pre class=\"wp-block-preformatted\">$ rpm-ostree uninstall --all<\/pre>\n<p>If you are wondering which packages I&#8217;ve chosen to layer on my libostree systems, here are my favorites.<\/p>\n<ul>\n<li><strong>tlp, tlp-rdw<\/strong>: helps to reduce the battery use on laptops<\/li>\n<\/ul>\n<ul>\n<li><strong>stacer<\/strong>: system optimizer and monitoring<\/li>\n<\/ul>\n<ul>\n<li><strong>WoeUSB<\/strong>: for preparing bootable Windows ISO images<\/li>\n<\/ul>\n<ul>\n<li><strong>unrar<\/strong>: for extracting and viewing RAR archives<\/li>\n<\/ul>\n<h2>Gaming<\/h2>\n<p>Some ways of playing games on Fedora Silverblue or Fedora Kinoite include the following.<\/p>\n<ul>\n<li>Using platforms (Steam, Lutris, <a href=\"http:\/\/itch.io\">itch.io<\/a>, GOG and other emulators)<\/li>\n<\/ul>\n<ul>\n<li>Using compatibility tools (Wine, Proton and others)<\/li>\n<\/ul>\n<ul>\n<li>Native Linux games (These games can be found in official or third-party repositories; or on their official website)<\/li>\n<\/ul>\n<ul>\n<li>Other (Virtualbox, web browser games, etc.)<\/li>\n<\/ul>\n<p>People are often advised to play games designed to run on Linux or Windows using Proton on Steam. However, not all Windows games are compatible with Proton; especially online games with cheat protection software. So it is useful to check the site below before installing the game.<\/p>\n<p><a href=\"https:\/\/www.protondb.com\/\"><\/a><a href=\"https:\/\/www.protondb.com\/\">https:\/\/www.protondb.com\/<\/a><\/p>\n<p>In Fedora Silverblue or Fedora Kinoite, there are two ways to install Proton.<\/p>\n<p><strong>From Flathub (using the terminal)<\/strong>:<\/p>\n<pre class=\"wp-block-preformatted\">$ flatpak install com.valvesoftware.Steam.CompatibilityTool.Proton<\/pre>\n<p><strong>From GitHub (manually)<\/strong>:<\/p>\n<p><a href=\"https:\/\/github.com\/GloriousEggroll\/proton-ge-custom\"><\/a><a href=\"https:\/\/github.com\/GloriousEggroll\/proton-ge-custom\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/github.com\/GloriousEggroll\/proton-ge-custom<\/a><\/p>\n<p>My advice is to use the proton-ge-custom version (Gloruious Eggroll) because it contains extra patches and fixes for many popular games. You can read about how to install proton-ge-custom and how to activate it on Steam in the README.md file in the above GitHub repo.<\/p>\n<p>If you do not want to use an online platform, it is possible to play the game using Wine. But you need to go to <a href=\"https:\/\/appdb.winehq.org\/index.php\" target=\"_blank\" rel=\"noreferrer noopener\">Wine<\/a>&#8216;s official site and read the reports about the game or try it yourself to see if the game works. Also, don&#8217;t think of it as just a game engine. Wine can run a wide verity of Windows programs. So how do you install Wine? Unfortunately, Wine cannot be directly installed on Fedora Silverblue or Fedora Kinoite as a layered package due to rpm-ostree&#8217;s lack of 32-bit support. It is possible, however, to install Wine using some indirect methods. The Winepak repo is dead now. So I\u2019ll skip that.<\/p>\n<p><strong>Method 1:<\/strong> Use a Flathub application as a Wine launcher.<\/p>\n<p>Lutris, Bottles, ProtonUp-Qt and finally Phoenicis PlayOnLinux<\/p>\n<p><strong>Method 2:<\/strong> Install Wine or Lutris in Toolbx with Steam.<\/p>\n<pre class=\"wp-block-preformatted\">$ sudo dnf install wine lutris steam<\/pre>\n<p><strong>Method 3:<\/strong> Partially install Wine on rpm-ostree.<\/p>\n<pre class=\"wp-block-preformatted\">$ rpm-ostree install wine-core wine-core.i686 lutris<\/pre>\n<p>There are other methods of playing games on Linux. Native Linux games, for example, are available in many repositories. Browser games are also easy to access. Installing Windows in a virtual machine is another method. However, while a virtual machine may work for simpler games, I do not recommend it for games that require a lot of processing power.<\/p>\n<h2>Other tips and suggestions<\/h2>\n<p>In this final section, I would like to mention a few more things that do not depend on anything mentioned earlier in this article.<\/p>\n<h3>rpm-ostree tips<\/h3>\n<p>You can use the <em>override<\/em> sub-command to manage base packages. For example, to remove the pre-loaded Firefox:<\/p>\n<pre class=\"wp-block-preformatted\">$ rpm-ostree override remove firefox<\/pre>\n<p>If you want to remove all overlays, overrides and initramfs:<\/p>\n<pre class=\"wp-block-preformatted\">$ rpm-ostree ex reset<\/pre>\n<p>rpm-ostree provides an <em>experimental<\/em> live update feature so that you can avoid rebooting after installing packages.<\/p>\n<pre class=\"wp-block-preformatted\">$ rpm-ostree install --apply-live htop<\/pre>\n<p>Since you are on Fedora Silverblue or Fedora Kinoite, switching systems or updating to rawhide can be done with just a few commands. Also, reverting is easier than ever.<\/p>\n<p>Substitute <em>system<\/em> with <em>kinoite<\/em> or <em>silverblue<\/em> in the below examples.<\/p>\n<p><strong>Switch systems<\/strong>:<\/p>\n<pre class=\"wp-block-preformatted\">$ rpm-ostree rebase fedora\/35\/x86_64\/system<\/pre>\n<p><strong>Upgrade to rawhide<\/strong>:<\/p>\n<pre class=\"wp-block-preformatted\">$ rpm-ostree rebase fedora\/rawhide\/x86_64\/system<\/pre>\n<p><strong>Rollback to a previous version<\/strong>:<\/p>\n<pre class=\"wp-block-preformatted\">$ rpm-ostree rollback fedora\/35\/x86_64\/system<\/pre>\n<h3>Listing packages<\/h3>\n<p>On Fedora Workstation you can use <em>dnf<\/em> to list the packages in the repositories. But this does not work on Fedora Silverblue or Fedora Kinoite. So how do you do it? If you want to list the installed RPM packages on your system, you can use the following command.<\/p>\n<p><strong>To list the installed RPM packages<\/strong>:<\/p>\n<pre class=\"wp-block-preformatted\">$ rpm -qa<\/pre>\n<p>However, if you want to list the packages in the repositories, you must either layer the <em>dnfdragora<\/em> package or enter Toolbx. Then you can use the following <em>dnf<\/em> commands.<\/p>\n<p><strong>To list all RPM packages (both installed and available)<\/strong>:<\/p>\n<pre class=\"wp-block-preformatted\">$ dnf list<\/pre>\n<p><strong>To search for a specific RPM package<\/strong>:<\/p>\n<pre class=\"wp-block-preformatted\">$ dnf search &lt;packagename&gt;<\/pre>\n<h3>Miscellaneous tips<\/h3>\n<ul>\n<li>When you want to install an application, first look at the Flatpak remotes. If it&#8217;s not there, use Toolbx. Finally, if you cannot run it in Toolbx, layer the package. If you still cannot get what you want to install, the last option is to install Windows in a virtual machine or on a separate partition or hard drive and configure <a href=\"https:\/\/en.wikipedia.org\/wiki\/Multi-booting\" target=\"_blank\" rel=\"noreferrer noopener\">multi-booting<\/a>.<\/li>\n<\/ul>\n<ul>\n<li>I do not recommend using any other repositories besides the Fedora, RPM Fusion, and Copr repositories unless required.<\/li>\n<\/ul>\n<ul>\n<li>Remember that only KDE (Fedora Kinoite) and GNOME (Fedora Silverblue) desktop environments are officially supported by the Fedora Project.<\/li>\n<\/ul>\n<ul>\n<li>If you want your system to stay the same speed, you can try to avoid doing too much customization (global theme, Conky, Plank, etc.)<\/li>\n<\/ul>\n<ul>\n<li>For Fedora Kinoite users: To add the option to open folder or file as root in the Dolphin file manager on the right click, install the &#8220;Dolphin as root&#8221; plugin from the Discover application.<\/li>\n<\/ul>\n<ul>\n<li>If you want to preview video files without opening them, you can enter: <kbd>$ rpm-ostree install ffmpegthumbs kffmpegthumbnailer<\/kbd>.\n<p><strong>Note:<\/strong> For now, do not install Dolphin from Flatpak because it replaces the preinstalled Dolphin on the system. With the Flatpak version of Dolphin, you will not be able to preview videos because it does not contain the packages mentioned above<\/li>\n<\/ul>\n<ul>\n<li>For Kinoite users: If you want to install a global theme, the installation from the system settings can sometimes cause problems. Instead, download the global theme file from the <a href=\"http:\/\/store.kde.org\" target=\"_blank\" rel=\"noreferrer noopener\">KDE Store<\/a> and enter: <kbd>$ kpackagetool5 -i \/home\/username\/theme folder<\/kbd><\/li>\n<\/ul>\n<ul>\n<li>Courtesy of Daniel&#8217;s guidance on Fedora Discussion, it is possible to <a href=\"https:\/\/discussion.fedoraproject.org\/t\/ms-core-fonts-on-silverblue\/1916\/5\" target=\"_blank\" rel=\"noreferrer noopener\">install Windows fonts without any package layering<\/a>.<\/li>\n<\/ul>\n<ul>\n<li>Courtesy of Badhshah, the following can be used to <a href=\"https:\/\/discussion.fedoraproject.org\/t\/anything-else-you-would-suggest-in-kinoite-silverblue-after-post-installation\/35762\/4\" target=\"_blank\" rel=\"noreferrer noopener\">enable hardware video acceleration if you have an Intel Graphics 4600 chipset<\/a>: <kbd>$ rpm-ostree install intel-gpu-tools libva-intel-driver libva-intel-hybrid-driver libva-utils libva-vdpau-driver libvdpau-va-gl mpv vdpauinfo<\/kbd><\/li>\n<\/ul>\n<h2>Conclusion<\/h2>\n<p>Dear friends, you have come to the end of this article. If you have anything you want to add to this topic or if you have questions, I am waiting for you in the comments section below. Also, special thanks to Badhshah, Timoth\u00e9e Ravier and Daniels for helping me with some information in preparing this article. Finally, if you want to contribute to Fedora Silverblue or Fedora Kinoite or get more information, check the links below. Thank you for reading.<\/p>\n<ul>\n<li><a href=\"https:\/\/docs.fedoraproject.org\/en-US\/fedora-silverblue\/\"><\/a><a href=\"https:\/\/docs.fedoraproject.org\/en-US\/fedora-silverblue\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/docs.fedoraproject.org\/en-US\/fedora-silverblue\/<\/a><\/li>\n<\/ul>\n<ul>\n<li><a href=\"https:\/\/docs.fedoraproject.org\/en-US\/fedora-kinoite\/\"><\/a><a href=\"https:\/\/docs.fedoraproject.org\/en-US\/fedora-kinoite\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/docs.fedoraproject.org\/en-US\/fedora-kinoite\/<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Hello everyone. My name is Yasin and I live in Turkey. I am 28 years old and have used Fedora Silverblue for two months and I am an active Fedora Kinoite user. I want to share the information I&#8217;ve learned in the process of using the systems. So I&#8217;ve decided to write this article. I [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[48],"tags":[606,45,1287,1288,46,47],"class_list":["post-123062","post","type-post","status-publish","format-standard","hentry","category-fedora-os","tag-faqs-and-guides","tag-fedora","tag-fedora-kinoite","tag-fedora-silverblue","tag-magazine","tag-news"],"_links":{"self":[{"href":"https:\/\/sickgaming.net\/blog\/wp-json\/wp\/v2\/posts\/123062","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sickgaming.net\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/sickgaming.net\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/sickgaming.net\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/sickgaming.net\/blog\/wp-json\/wp\/v2\/comments?post=123062"}],"version-history":[{"count":0,"href":"https:\/\/sickgaming.net\/blog\/wp-json\/wp\/v2\/posts\/123062\/revisions"}],"wp:attachment":[{"href":"https:\/\/sickgaming.net\/blog\/wp-json\/wp\/v2\/media?parent=123062"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sickgaming.net\/blog\/wp-json\/wp\/v2\/categories?post=123062"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sickgaming.net\/blog\/wp-json\/wp\/v2\/tags?post=123062"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}