Fedora workstation displays Fedora logo on the desktop for the default wallpaper, now there’s an extension that can do the similar job in Ubuntu Desktop, Arch, and Manjaro Linux with GNOME 42 ~ 46.
It’s “Desktop Logo”, which allows to add any user selected image into desktop as background logo, resize and place it in top-left, top-center, top-right, center, bottom-left, bottom-center, or bottom-right of screen.
MPV media player released version 0.37.0 yesterday! Here are the new features and Ubuntu PPA for installing the .deb package in Ubuntu, Linux Mint.
MPV 0.37.0 has big improvements for Apple users. It added Vulkan support in vo_gpu and vo_gnu_next. And, it now supports VideoToolbox hardware decoding, a low-level framework that provides direct access to hardware encoders and decoders.
The release also added support for delivery system ISDB-T for dvb streaming, support SPDIF passthrough for OSS audio, and can play up to 64 channels.
For libmpv library, the release added new mpv_time_ns() to allow more precise time based on nanoseconds.
For command line, MPV 0.37.0 added new options, they include:
--hdr-peak-percentile and --libplacebo-opts for vo_gpu_next.
--term-remaining-playtime for player.
--x11-wid-title for x11.
--subs-match-os-language to replace ‘auto’ option for player.
--video-crop for vo.
--window-corners, --window-affinity, --title-bar, --backdrop-type for win32.
The new release will be available in Ubuntu Software (App Center) in next few days as Snap package.
For those who prefer the classic .deb package format, here’s the PPA for Ubuntu 22.04, Ubuntu 23.04, and Ubuntu 23.10.
1. Firstly, press Ctrl+Alt+T on keyboard to open a terminal window. When it opens, paste the command below and hit run:
sudo add-apt-repository ppa:ubuntuhandbook1/mpv
Type user password (no asterisk feedback) when it asks and hit Enter to continue.
2. Linux Mint 21 user needs to run command in terminal to manually refresh the package cache:
sudo apt update
3. Finally, install mpv media player v0.37.0 by running command:
sudo apt install mpv
To verify, run mpv --version command in terminal.
Tips: for hardware video acceleration, first make sure your graphics driver support it, then edit ‘/etc/mpv/mpv.conf‘ file and add hwdec=auto. For the missing header-bar, use gpu-context=x11egl.
Uninstall:
You can choose to purge the PPA repository, which will also downgrade mpv to the stock version in system repository. To do so, open terminal and run command:
Mozilla announced Firefox 120.0 a day ago as the latest stable release of the popular web browser.
The new release continue adding new security improvements. In the right-click menu of web links, there’s now “Copy Link Without Site Tracking” to ensure that copied links no longer contain tracking information.
The ‘Privacy & Security’ setting page now has an option “Tell websites not to sell or share my data“.
For Germany users, Cookie Banner Blocker and URL Tracking Protection by default in private windows to auto-refuse cookies, and remove non-essential URL query parameters.
For Ubuntu, both Firefox and Chromium (in system repository) are Snap packages run in sandbox. Since 120.0 release, user can now import data from Chromium to Firefox, when both web browsers are installed as Snap packages.
Other changes in Firefox 120.0 include:
enhance Canvas APIs with Fingerprinting Protection for private windows.
imports TLS trust anchors (e.g., certificates) from the operating system root store.
New keyboard shortcuts to edit and delete a selected credential on about:logins.
support corner snapping for Picture-in-Picture on Windows and Linux
Various security fixes and developer improvements.
Download Firefox 120.0
The official release note as well as download link is available in the Mozilla website via the link:
For Ubuntu users with the pre-installed Firefox package, it has been already updated to the new 120.0 release. Just check it via menu “Help -> About Firefox”.
For those who prefer the classic .deb package format, the Mozilla Team PPA has made the package for all current Ubuntu releases, however, Ubuntu 22.04 users need to manually set PPA priority.
For Ubuntu 23.10, Fedora 39, Arch and other Linux with GNOME Desktop 45, there’s now new system tray applet to monitor system resource utilization.
There are quite a few tools for monitoring system resource utilization. While, Gnome-Stats-Plus is a new one that adds real-time graphs in right-corner of top-panel, allowing users to keep a close eye on their system’s performance.
By moving mouse cursor over the indicator icon, it will show you a bigger graph with real-time and historical CPU load, memory usage, network speed, and swap area usage.
And, clicking on the icon will launch system monitor application.
UPDATE May 2024: .NET 8 is finally made into Ubuntu 22.04 main repository!! Just open terminal (Ctrl+Alt+T) and run 2 commands one by one to install:
sudo apt update
sudo apt install dotnet8
Microsoft announced .NET 8 a few days ago. Here’s a step by step guide shows how to install it in Ubuntu 22.04 LTS (Also works in Ubuntu 20.04).
.NET 8 is a new LTS release with 3 years support. It features new code generator “Dynamic Profile-Guided Optimization” (PGO), AVX-512 instruction set, out-of-the-box AI features, first preview of .NET Aspire, native AoT, and various other changes. See the release note for details.
And, here are 2 ways to install the .NET 8 in current Ubuntu 22.04 LTS. They are Microsoft’s official repository and Ubuntu PPA.
Option 1: Install .NET 8 SDK/Run-time via official repository
Ubuntu has included the new release package into system repository for Ubuntu 23.10 and next Ubuntu 24.04.
Don’t know if it will be backported to Ubuntu 22.04 LTS repository, but here you can install it through Microsoft’s official apt repository. And, the repository also supports Ubuntu 20.04!
1. install the key
To add the Microsoft repository, you have to first download & install the key file.
To do so, press Ctrl+Alt+T on keyboard to open terminal. When terminal opens, run single command:
Depends on your desktop environment, replace gedit with mousepad for XFCE, pluma for MATE, or nano that works in most cases.
When the file opens, add following lines and save it.
Types: deb
URIs: https://packages.microsoft.com/ubuntu/22.04/prod/
Suites: jammy
Components: main
Architectures: amd64
Signed-By: /etc/apt/keyrings/microsoft.gpg
For Ubuntu 20.04, replace 22.04 with 20.04, and jammy with focal.
3. Install .NET 8
Finally, update system package cache by running command:
sudo apt update
And, install .NET 8 SDK, runtime:
sudo apt install dotnet-sdk-8.0
I’m not .NET developer, but you can try dotnet --version after installation to verify.
Option 2: Install .NET 8 from Ubuntu PPA
For choice, .NET 8 is also available to install through an Ubuntu PPA. It so far supports Ubuntu 22.04 on amd64 (Intel/AMD) and arm64 (e.g., Raspberry Pi) devices.
This is a third-party PPA, but maintained by the same people who maintain the .NET8 package in Ubuntu’s system repository for 23.10 & 24.04.
1. First, press Ctrl+Alt+T on keyboard to open terminal. When it opens, run command to add the PPA:
sudo add-apt-repository ppa:dotnet/dotnet8
2. Linux Mint 21 users need to manually refresh the package cache after adding PPA, by running command:
sudo apt update
3. Finally, just run command to install .net8:
sudo apt install dotnet8
The command will install the host, sdk, runtime, as well as other packages automatically as dependencies.
Uninstall .NET 8
To remove .NET 8, open terminal (Ctrl+Alt+T) and run command:
For HandBrake users who prefer the classic .deb package, there’s now new PPA for all current, Ubuntu 22.04, Ubuntu 24.04, Ubuntu 23.10, and their based systems, such as Linux Mint 20/21, Pop! OS, Zorin OS 17.
HandBrake announced the new major 1.7.0 release a few days ago. The release features new AMD VCN AV1 encoder, NVIDIA NVENC AV1 encoder, SVT-AV1 multi-pass ABR mode, Apple VideoToolbox hardware presets, improved QSV support, drag and drop support for video scanning, and various other changes. See the github releases page for details.
HandBrake 1.7.0 Dark Mode
HandBrake provides official Linux package through .flatpak package (see link above). It’s can be installed in most Linux, however, run in sandbox.
Install HandBrake (1.8.0 Updated) in Ubuntu via PPA
For those prefer Ubuntu PPA, I’ve uploaded the new release package into this unofficial PPA with all current Ubuntu releases, on amd64 (Intel/AMD) and arm64 (Apple Silicon, Raspberry Pi) CPUs support.
Thanks to the official guide, the new package in PPA is built with the latest run-time libraries (e.g., FFmpeg 7.0, libdvdnav & libdvdread, SVT-AV1 1.7.0) into single bundle. Meaning, it can be installed on old Ubuntu releases (22.04), without worrying about dependencies mis-match. Though, the .deb package size increased to be around 10 MiB.
1. First, press Ctrl+Alt+T on keyboard to open terminal. When it opens, run command to add the PPA:
Type user password (no asterisk feedback) when it asks and hit Enter to continue.
2. Linux Mint users need to manually update the system package cache, after adding PPA, by running command:
sudo apt update
3. Finally, install the new HandBrake package via command:
sudo apt install handbrake
For choice, you may also run sudo apt install handbrake-cli to install the command line tool
When installation done, search for and launch the video transcoder from either start/application menu or ‘Activities’ overview depends on your desktop environment.
Uninstall:
To uninstall the Ubuntu PPA, either open terminal (Ctrl+Alt+T) and run command:
Shotwell photo viewer and organizer released new 0.32.3 version a day ago with minor updates.
The release came with some bug-fixes and minor changes, they include:
Fix asking twice on closing viewer with modified image
Do not try to reload photo on shutdown
Do not abort if new thumbnail size does not exist
Open fullscreen windows on correct monitor
Do not show toolbar if mouse is on another monitor
Do not leak zoom buffers
Remove length limit for GPhoto import
Be more robust against invalid UTF-8 filenames
Drop some old work-arounds
As well, there’s new/updated translations included in this release. They include: id.po, courtesy of Andika Triwidada; eu.po, courtesy of Asier Sarasua Garmendia; hu.po, courtesy of Balázs Úr; sl.po, courtesy of Martin Srebotnjak.
How to Install Shotwell 0.32.3 in Ubuntu
Shotwell is available to install in Ubuntu via a few different ways.
Snap package
Canonical (the company behind Ubuntu) maintains Shotwell as Snap package, which runs in sandbox. However, it’s stuck at 0.32.1 at the moment of writing.
The snap package is available to install in Ubuntu Software (or App Center for 23.10).
Flatpak package
Shotwell is also available to install as Flatpak package, another universal Linux package format runs in sandbox. It’s marked as maintained by the Shotwell developers, but NOT verified.
The Flatpak is at version of 0.32.2 at the moment of writing (check HERE). Ubuntu user can press Ctrl+Alt+T on keyboard to open terminal, and run 2 commands one by one to install it:
Type user password (no asterisk feedback) when it asks and hit Enter to continue.
2. Next, launch Software Updater (Update Manager), then install the updates for the software package.
Or, run command in terminal to install/upgrade the Shotwell package:
sudo apt install shotwell
NOTE: Linux Mint user may need to run sudo apt update first to refresh package cache.
Finally, either right-click on your photo images to select open with the photo manager, or search for and launch shotwell from ‘Activities’ overview and enjoy!
Uninstall Shotwell 0.32.3
For any issue, it’s recommended to purge the Ubuntu PPA. Which, will remove PPA and downgrade shotwell to the pre-installed version.
To do so, open terminal (Ctrl+Alt+T) and run command:
For the Snap package, just remove it from Ubuntu Software or App Center. While, Flatpak package can be removed by running the command below in a terminal window:
For users of Audacity 3.4.x, the popular audio editor and recorder app just announced the second update for this release series.
It’s Audacity 3.4.2 that includes following bug-fixes:
Fix crash when opening projects with zero-length clips.
Fix a crash when clearing loops.
Fix Nyquist-related crashes.
Fix a crash when closing Audacity.
When exporting a file, the sample rate of the tracks is now considered, and last-used sample rate is remembered.
Copy-pasting now pastes into audio again by default. Though, there’s an option to change in Preferences.
Mix and render now also resets the gain for the resulting track.
Fix clips shifting to the right when effects are applied to them.
Fix clicks occurring when overdubbing a project with muted tracks.
Fix files being exported without a file extension in rare cases.
Show all sample rates possible for MP2 exports.
Fix pasting into labels.
Fix copying when “select all audio if selection required” is enabled.
Fix GTK detection and compilation for wxWidgets 3.2.4.
Fix EQs in macros.
Fix builds on armhf.
How to Install Audacity 3.4.2
Audacity is available to install Ubuntu Linux through a few different ways. They include AppImage, Ubuntu PPA, and Flatpak. Just choose either one that you prefer.
Option 1: AppImage (official)
It provides official macOS .dmg, Windows .exe, and Linux .AppImage packages available to download at the link below:
For Linux, click expand the “Assets” section and choose download the .AppImage package.
Then, right-click on the .AppImage file and go to its ‘Properties’ dialog. Add executable permission by enable ‘allow executing file as program‘. Finally, right-click on it and select “Run” to launch Audacity.
Option 2: Ubuntu PPA
For choice, I’ve uploaded the new release package into unofficial PPA for Ubuntu 22.04, 23.04, and Ubuntu 23.10 with amd64, arm64, and armhf support.
1. First, press Ctrl+Alt+T on keyboard to open terminal. When terminal opens, run command to add the PPA:
Since Ubuntu 23.10 with default GNOME 45 desktop, there’s no longer app menu indicator in top-panel next to workspace indicator (previously ‘Activities’).
It’s an indicator menu for current running app window in focus, which has few basic options such as “New Window” and “Quit”.
GNOME has proposed to replace the app menu with a new way for indicating window focus. GNOME 45 takes the first step by removing it from top-panel.
For those who prefer the top panel app menu, it’s easy to get it back by using an extension. And, here’s how to do the trick step by step.
Get back App Menu Indicator in GNOME 45/46
NOTE: This tutorial should work in Ubuntu 23.10, Ubuntu 24.04, Fedora 39, Manjaro, Arch, and other Linux with GNOME 45/46.
For Ubuntu 23.10 and Ubuntu 24.04, firstly launch App Center, then search for and install “Extension Manager” app.
Install Extension Manager in Ubuntu Software/App Center
Next, launch “Extension Manager”, and use it to search & install the “App menu is back” extension, under Browse tab.
After installing the extension, the app menu should be back in top-panel, next to the ‘pill and dot’ workspace indicator once you selected any app window.
For Fedora 39 and other Linux, just launch web browser and go to the extension page in EGO via the link below:
Then, use the ON/OFF switch in the page to install the extension. In case you don’t see the toggle switch, install web browser extension via the link it prompted and refresh the page.