Site icon TechGit

Top things to do After installing Ubuntu 22.10 Kinetic Kudu

Ubuntu 22.10 Kinetic Kudu is out! Time to install the new system and do same configurations before ready for use. And, here are a list of things I can tell for you.

1. Update cache & install Media Codec

On a new Ubuntu system, user may need to refresh package index before being able to install software packages. And, this can be done easily by:

Ubuntu does not include multimedia codec to play video and/or music with default applications out-of-the-box. It’s however quite easy to install them

For KUbuntu user, replace ubuntu-restricted-extras with kubuntu-restricted-extras in command.

2. Enable Flatpak & AppImage support

Ubuntu officially supports Snap and Deb package formats. But, we can avoid the popular Flatpak and AppImage software packages today in Linux.

AppImage requires libfuse2 which is NOT pre-installed since Ubuntu 22.04, due to switch to fuse3. The package is however still available in system repository.

Ubuntu also does not support Flatpak out-of-the-box, but it can be enabled by running a single command:

After that, you may go to flathub.org to find out and install your favorite apps as Flatpak.

3. Hide USB/Mounted Disk from left Panel, Enalbe Minimize on click

The left (or bottom) panel shows the connected USB stick, mounted disk volume out-of-the-box. User can however hide them using the new ‘Ubuntu Dock’ settings.

To enable the behavior that click the app icon on left (or bottom) dock panel to focus or minimize app window, open terminal (Ctrl+Alt+T) and run command:

gsettings set org.gnome.shell.extensions.dash-to-dock click-action 'minimize'

Ubuntu 22.10 introduced a new feature that when clicking app icon on dock, it goes to overview screen for easy switching this app if multiple windows opened. So, use the command below instead can be a better choice:

gsettings set org.gnome.shell.extensions.dash-to-dock click-action 'focus-minimize-or-appspread'

After that, clicking app icon on dock panel will either open/focus window, minimize or goes overview for switching window.

4. Enable ‘New Documents’ context menu

GNOME is now working to make it easy to create new documents in ‘Files’ (aka Nautilus file manager). Until then, user need to manually create an empty document in ‘Templates’ folder to enable this context menu option.

  1. First, click top-left ‘Activities’ to open overview screen. Then search for and open ‘Text Editor’.
  2. In text editor window, go to ‘≡’ menu and select ‘save as’ option (You don’t have to insert anything, just save as empty document).
  3. Finally, save the empty file as ‘Empty Document‘ into your ‘Templates‘ folder.

After that, right-click on blank area either in desktop or file manager window to see the ‘New Document’ option.

5. Install useful configuration tool

There are some useful configuration tools that you may need. Either install them via “Ubuntu Software” app or run the apt commands below in terminal.

GNOME Tweaks

Extension Manager

Install some cool Gnome Shell Extensions, (e.g. ‘Just Perfect’, ‘Blur my shell’), via extension manager app under ‘Browse’ tab.

Just Perfection with even more configuration options

6. Set light/dark photo images as wallpaper that switch automatically

GNOME 40 introduced adaptive wallpaper that changes automatically depends on system color scheme. It’s not available in Ubuntu 22.04 due to custom ‘Settings’ dialog. For Ubuntu 22.10, you can set your photo images with light and dark versions to wallpaper via following steps.

  1. First, open ‘Files‘ (nautilus file manager), then press Ctrl+H to show hidden files/folders.
  2. Then, navigate to .local/share and create a new sub-folder called ‘gnome-background-properties‘
  3. Finally, create a .xml file under that folder with whatever name, and insert following content (change path-to-file accordingly).
<?xml version="1.0"?>
<!DOCTYPE wallpapers SYSTEM "gnome-wp-list.dtd">
<wallpapers>
  <wallpaper deleted="false">
    <name>TYPE_NAME_HERE</name>
    <filename>/PATH/TO/PICTURE_LIGHT</filename>
    <filename-dark>/PATH/TO/PICTURE_DARK</filename-dark>
    <options>zoom</options>
    <shade_type>solid</shade_type>
    <pcolor>#3465a4</pcolor>
    <scolor>#000000</scolor>
  </wallpaper>
</wallpapers>

After that, open ‘Settings’ and navigate to ‘Appearance’ for the new adaptive wallpaper:

7. Get ‘Login Manager Settings’ to configure login screen

GDM Settings is a login screen managing tool for GNOME display manager. The application now is stable for daily use though it’s young project.

  1. First, go to project page below and select download the AppImageDownload Login Manager Settings (under ‘Assets’)
  2. Right-click on the AppImage, go to ‘Properties‘, and then turn on the option for ‘Executable as Program‘
  3. Finally, right-click and click ‘Run’ to launch the configuration tool.
  4. There go to ‘Appearance’ -> Background -> Type ‘Image’ and select a photo image for login screen.
  5. Configure font, color, logo, disable user list,etc as you want and finally click ‘Apply’ button to make changes.

Configure Login Screen Appearance

8. Install Firefox as classic Deb package

For those prefer the classic Deb to Snap, open terminal (Ctrl+Alt+T) and run the commands below one by one to switch Firefox from Snap to DEB.

To prevent Ubuntu from automatically updating Firefox to Snap again, you also need to set a higher PPA priority. See this tutorial for details.

9. Switch back to Xorg session

If you have some old applications that are still NOT running properly in the default Wayland session. Simply log out, click username and use the bottom right ‘gear’ button menu to switch back Xorg session, and finally login.

Original Article

FacebookTwitterTumblrRedditLinkedInHacker NewsDiggBufferGoogle ClassroomThreadsXINGShare
Exit mobile version