Archives For App Review

Stacer is an open-source, CCleaner like system optimizer and application monitor utility for Linux desktop.

Stacer features:

  • Monitoring system resource usage.
  • System cleaner for package caches, application logs.
  • Manage system services, processes, packages, startup applications, apt repositories.
  • Window manager and desktop appearance settings.

How to Install Stacer in Ubuntu:

The software offers .Appimage (non-install executable file) and .deb packages in the project release page:

Stacer also has an stable PPA with .deb packages and future updates for Ubuntu 16.04, Ubuntu 18.04, Ubuntu 19.04, and their derivatives.

1. Open terminal either via Ctrl+Alt+T shortcut or from application menu. When it opens, run command:

sudo add-apt-repository ppa:oguzhaninan/stacer

Type user password (no asterisk feedback) when it prompts and hit Enter to continue adding PPA.

2. Then check updates and install the utility via following 2 commands:

sudo apt update

sudo apt install stacer

Uninstall Stacer:

To remove the utility, run command in terminal:

sudo apt remove --auto-remove stacer

And remove the PPA repository from Software & Updates -> Other Software tab.

Slimbook battery is a battery optimization tool that works on Gnome, KDE, Unity, Cinnamon, and MATE desktop.

The software offers a system tray application indicator with three energy modes: Energy Saving, Balanced, and Maximum Performance. Also an ‘Off‘ menu option is available to turn off the optimization.

Each energy mode comes with default values. User is allowed to change the most important values via the Preferences (Advanced mode).

How to Install Slimbook battery in Ubuntu:

Slimbook’s official PPA contains the latest packages for Ubuntu 16.04, Ubuntu 18.04, Ubuntu 18.10, Ubuntu 19.04, and their derivatives.

1. Open terminal either via Ctrl+Alt+T keyboard shortcut or from application menu. When it opens, run command to add the PPA:

sudo add-apt-repository ppa:slimbook/slimbook

Type user password (no asterisk feedback) when it prompts and hit Enter to continue adding PPA.

2. Then refresh system package cache and install the tool:

sudo apt update

sudo apt install slimbookbattery

Once installed, launch it from application menu and enjoy!

Uninstall:

To remove the tool, open terminal and run command:

sudo apt remove --auto-remove slimbookbattery

And remove the PPA either via Software & Updates-> Other Software, or by running command:

sudo add-apt-repository --remove ppa:slimbook/slimbook

To check system information and hardware details in Ubuntu command console, without confused with various Linux commands, there’s a full featured CLI system information available.

There’s already a great graphical tool Hardinfo available in Ubuntu Software. For the command line tool, inxi is available to check:

  • Audio/sound card(s), driver, sound server.
  • System battery info
  • CPU output
  • Hard Disk info
  • Graphics card, driver, display server, resolution, renderer, OpenGL version.
  • General info, including processes, uptime, memory, IRC client or shell type, inxi version.
  • Memory (RAM) data (Require root)
  • Network card, driver.
  • system info, partition info, sensors output, USB data, and more.

To install inxi in Ubuntu, simply run command:

sudo apt-get install inxi

Then run man inxi to get a list of command options, or run inxi -F to get a brief output:

For more about the tool, go to inxi web page.

Want to split, merge, rotate, and/or delete pages in your PDF files? Here’s a tool make it easy to do the job in Ubuntu Desktop.

It’s PDF Mix Tool, a free and open-source tool written in C++ and depends only on Qt 6 and PoDoFo.

The app provides stupid simple user interface to operate PDF files in Linux. Simply choose an action you want to do in the left, then open/import PDF files, finally click Save/Extract/Generate button, and done!

So far, it support following actions:

  • Merge multiple PDF files into single.
  • Extract PDF pages into single or mutiple files.
  • Delete PDF pages.
  • Rotate PDF.
  • Edit PDF metadata.
  • Change PDF size, layout, margins, etc.
  • Extract PDF to Images.

PDF Merge

How to Install PDF Mix Tool

Some Linux Distributions (e.g., Fedora, Arch Linux, openSUSE) have made the app package into system repositories.

For Ubuntu, users may choose to install it via either Snap or Flatpak package.

Option 1: Snap package

NOTE: The Snap seems not working good in my case in Ubuntu 24.04 with Xorg.

The Snap package is quite easy to install, simply launch App Center (or Ubuntu Software) then search and install ‘PDF Mix Tool’.

Option 2: Flatpak package

For choice, the app can be also installed via Flatpak package that works in most Linux.

  • First, press Ctrl+Alt+T to open terminal and run command to install Flatpak daemon:
    sudo apt install flatpak
  • Then, install the app as Flatpak package via command:
    flatpak install https://dl.flathub.org/repo/appstream/eu.scarpetta.PDFMixTool.flatpakref

After installation, just search for and launch it from either GNOME overview or start menu depends on your desktop environment.

If the app icon is not visible, either log out and back in, or try running the command below to start it from terminal:

flatpak run eu.scarpetta.PDFMixTool

Uninstall PDF Mix Tool

To uninstall the software package, either use Ubuntu Software (or App Center) for the Snap package.

Or run the command below to uninstall Flatpak package:

flatpak uninstall --delete-data eu.scarpetta.PDFMixTool

Optionally, you may also run flatpak uninstall --unused to remove useless runtime libraries.

Flameshot is a simple yet powerful screenshot tool with annotation feature. Other than Shutter, it’s another of my favorite screen capturing tools for Ubuntu desktop so far.

Flameshot is written by C++ with Qt5 framework. It offers a system tray icon with ‘Take Screenshot’ and ‘Configuration’ menu options.

While selecting a screen area to capture, many editing tool buttons appear at the bottom. And you can press right-click to show color picker, and Space to open the side panel.

Other software features include:

  • Customizable appearance.
  • DBus interface.
  • Upload to Imgur.

How to Install Flameshot in Ubuntu:

The software is available in all current Ubuntu system repositories. Simply launch Ubuntu Software (or App Center), then search and install the package.

NOTE: the screenshot tool is available in App Center for both Snap (run in sandbox) and native Debian package formats. Choose either one that you prefer.

For choice, the software provides official packages for Debian, Fedora, Ubuntu, AppImage, and Flatpak, available to download under “Assets” in the link below:

Uninstall:

To uninstall the tool, either use Ubuntu Software (App Center) or open terminal (Ctrl+Alt+T) and run the command below instead:

  • For Debian package:
    sudo apt remove --autoremove flameshot
  • For Snap package:
    sudo snap remove flameshot

There’s already a graphical tool called Ukuu which make it easy to install the latest Linux Kernels in Ubuntu and Linux Mint.

UPDATE 2025: UKTools has NOT been updated for a few years!

Today I’m going to show you a new command line tool called UKTools which provides:

  • uktools-upgrade, one command to install the latest Linux kernel (stable) from kernel.ubuntu.com.
  • uktools-purge, one command to remove old kernels, the first and the last two are excluded.

The tools also support cron jobs to automatically run upgrade and/or purge scripts.

How to Install UKTools in Ubuntu:

The application does not has any Ubuntu binary at the moment. However, it’s easy to compile it from the source.

1. Open terminal (Ctrl+Alt+T) and clone the source via command:

git clone https://github.com/usbkey9/uktools && cd uktools

2. Then compile and install it via command:

make

The setup runs automatically if it’s installed successfully.

Uninstall:

Keep the uktools folder in your user root directory, so you can re-run UKTools setup, or remove the command line tool via command:

cd ~/uktools/ && make uninstall

Looking for how to create desktop slideshow in Ubuntu 18.04? Here I’ll show you some best wallpaper changing software for Ubuntu Linux.

1. Shotwell

For just the basic automatic wallpaper changing feature, you don’t need to install any software.

Just launch the pre-installed Shotwell photo manager, choose the pictures you need (you may need to import them first), then go to Files -> Set as Desktop Slideshow.

Finally set the time interval in next dialog and done!

2. Wallch

Wallch was my favorite wallpaper changing software though it’s not under active development. Besides changing local wallpapers, Wallch also features:

  • Display live earth as desktop background.
  • Download and display picture of the day (wikipedia).
  • Wallpaper clocks
  • Live website as desktop background.

Wallch can be easily installed in Ubuntu Software:

3. Variety

Variety is an open-source wallpaper changer that use local images or automatically download wallpapers from Unsplash and other online sources, allows you to rotate them on a regular interval, and provides easy ways to separate the great images from the junk. Variety can also display wise and funny quotations or a nice digital clock on the desktop.

Variety can be easily installed in Ubuntu Software. For the latest release, go to Variety website.

4. Wallpaper Downloader

This is a wallpaper downloading software that automatically downloads pictures from Devianart, Bing daily wallpaper, Wallhaven.cc, etc., with given keywords, resolution, time interval. And of course, it provides ability to change wallpaper every x minute.

Wallpaper Downloader can be installed easily in Ubuntu Software.

These are the applications that I’ve ever used to create desktop slideshows in Ubuntu desktop.

If you know any other great wallpaper changing software, feel free to tell me in the comment.

For those looking for Time Machine like backup software, Cronopete is a Linux backup utility modeled after Apple’s time machine.

“The name comes from anacronopete (“who flies through time”), which is a time machine featured in the novel from Enrique Gaspar y Rimbaud, and published in 1887 (eight years before than H.G. Wells’Time Machine).”

Install Cronopete backup tool in Ubuntu:

The software project page so far offers packages for Ubuntu 24.04, Ubuntu 24.10, Linux Mint, Fedora, Debian, and Arch Linux, available to download via the link below:

Select download the package depends on your OS edition. If you don’t even know which OS is currently running, open terminal (Ctrl+Alt+T) and run cat /etc/os-release command to tell.

Then either double the downloaded package to open with system package manager (App Center) then install, or open terminal and use the command below to install the .deb package for Ubuntu:

sudo apt install drag-and-drop-deb-file-here

Enable store backups in a folder:

When you click ‘Change destination’ button to choose a folder to save backups, you’ll be prompted to enable folder backend. And this can be done by:

  1. Install Dconf Editor via App Center.
  2. Launch Dconf Editor and navigate to /org/rastersoft/cronopete
  3. Scroll down and enable enable-folder-backend

Uninstall:

To remove Cronopete backup tool, open terminal via Ctrl+Alt+T and run command:

sudo apt-get remove --autoremove cronopete

Wallpaper Downloader is a java software to automatically download you favorite wallpapers from internet and set as desktop background every few minutes.

With the software, you can:

  • Automatically download wallpapers from:
    • Wallhaven.cc
    • Devianart
    • Bing daily wallpaper
    • Social Wallpapering
    • WallpaperFusion
    • DualMonitorBackgrounds.
  • Download wallpapers with given keywords.
  • Download wallpapers with given time interval
  • Changes desktop wallpaper with given time interval.
  • Single click to move favorite wallpapers to another directory.

How to Install Wallpaper Downloader in Ubuntu:

1. For users (Ubuntu 16.04 only) never installed a snap package, open terminal (Ctrl+Alt+T) and run command to install snapd:

sudo apt-get install snapd snapd-xdg-open

2. As a snap package, you can search for and install the package in Ubuntu Software:

or run single command to install the snap package:

snap install wallpaperdownloader

(Optional) If you don’t like the software, simply run command to remove the snap:

snap remove wallpaperdownloader

In addition, the software also has an official PPA with traditional deb packages for all current Ubuntu releases.

PyRadio is an open-source curses based internet radio player that runs in command console. The software is implemented in Python, and uses mplayer or VLC for media playback.

The community has recently made the snap package for PyRadio to make it easy to install the tool in Ubuntu 16.04 and higher either via Ubuntu Software:

or by running command in terminal:

snap install pyradio

Since snap app contains most required libraries and dependencies, the installation file is kinda large.

To start the radio player, run command:

pyradio --play

And here are keyboard shortcuts:

  • Up/Down/j/k/PgUp/PgDown Change station selection
  • Enter Play selected station
  • -/+ Change volume
  • m Mute
  • r Select and play a random station
  • g Jump to first station
  • <n>G Jump to n-th station
  • Space Stop/start playing selected station
  • Esc/q Quit