Customize your system tray with YAD
Bespoke System Tray
YAD lets you customize your system tray with one-line Bash tray scripts.
My goal was to find a simple way to group together my favorite apps and web pages into a system tray item. There are a number of different approaches to this, but for my requirements I found that the YAD (Yet Another Dialog) tool [1] gave me everything that I needed, and I could do it all with just one line of Bash script.
In this article, I will introduce Bash tray scripts with three examples. The first example will show how to create tray scripts that put Linux diagnostic data into both custom dialogs and terminal windows. In the second example, I will add pop-up browser windows to a right-click submenu. The final example will look at how to toggle the tray icon, command, and tooltip with simulated weather conditions.
Getting Started
There are a number of different tools for creating system tray applications, such as AllTray and KDocker. For my projects, I prefer YAD because it lets you create custom dialogs and it supports dynamic changes to the tray features. YAD is a command-line dialog tool very similar to Zenity [2], but with some added features such as system tray support and a more complete dialog functionality.
For Debian/Raspian/Ubuntu systems, you can install YAD with:
sudo apt install yad
Creating a Tray Script
Listing 1 is a one-line Bash script that calls YAD to create a system tray item (Figure 1). Because Bash and YAD statements can be quite long, you can make the code more readable by using backslash (\
) characters to extend a statement across multiple lines, as shown in Listing 1.
Listing 1
Creating a System Tray Item
yad --notification --image="gtk-execute" \ --command="yad --text=\"$(lsusb)\" \ --title=\"USB Info\" --fixed --button=ok" \ --text="My Fav Utility"
The yad
statement in Listing 1 uses the --notification
and --image
options to put a user-defined icon in the system tray. The --command
option calls an application or script when you click on the tray item. The --text option defines tooltips.
In Figure 1, the command-line lsusb
utility lists the USB-connected devices. The output from lsusb
is shown in a YAD text dialog.
To terminate a YAD tray script, use a center mouse click. You can also terminate from a right-click menu, which I'll discuss later.
YAD includes a handy yad-icon-browser
tool, which lets you review available icons (Figure 2). To make coding a little easier, YAD only needs the image name; a full path to the image is not required.
Many applications, such as the top
system performance tool, are best viewed in a terminal window. The YAD tray script in Listing 2 calls top
within a terminal window (Figure 3).
Listing 2
Calling top in a Terminal Window
yad --notification --image="media-memory" \ --command="xterm -hold -fa Monospace -fs 12 \ -T 'System Performance' -e 'top' " \ --text="Show System Performance"
Listing 2 calls xterm
to launch a terminal window. The -e
option executes the top
utility. The -hold
option keeps the terminal open after the command is complete. Font types and sizes can be defined with the -fa
and -fs
options. The terminal window caption is set using the -T
parameter.
Right-Click Menus
YAD also supports right-click menu command items in addition to left-click commands. The syntax for menu items is:
--menu="menu_title1 ! menu_command1 | menu_title2 ! menu_command2 ... "
Listing 3 shows the main command and then four right-click menu options (Figure 4). The main command calls iostat
(the CPU and I/O reporting utility). The first three right-click options are vmstat
(memory stats), lm-sensor
(print sensor info), and lsusb
(list USB devices). The fourth option kills the script.
Listing 3
Adding Four Right-Click Menu Options
#!/bin/bash # # tray2yad.sh - create tray item with some Bash utilities # - add a function to change YAD text options # nice_dialog() { # Use Pango markup language for custom text presentations echo "yad --text='<tt>$($1)</tt>' \ --title=$2 --button=OK \ --fixed " } # Create a system tray item with 4 right click items yad --notification --image="applications-utilities" \ --command="$(nice_dialog 'iostat -c' 'IOSTAT')" \ --menu="Memory! $(nice_dialog 'vmstat' 'VMSTAT') \ | Sensors! $(nice_dialog 'sensors' 'SENSORS') \ | USB ! $(nice_dialog 'lsusb' 'USB') \ | Quit ! killall yad" \ --text="My Fav Utilities"
Instead of using one extremely large Bash statement, the nice_dialog
function is created to make the output a little more presentable. This function adjusts font type and font size for text within the YAD dialog. For more information on how to configure YAD color and font options, see the Pango markup language [3] documentation.
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
ESET Discovers New Linux Malware
WolfsBane is an all-in-one malware that has hit the Linux operating system and includes a dropper, a launcher, and a backdoor.
-
New Linux Kernel Patch Allows Forcing a CPU Mitigation
Even when CPU mitigations can consume precious CPU cycles, it might not be a bad idea to allow users to enable them, even if your machine isn't vulnerable.
-
Red Hat Enterprise Linux 9.5 Released
Notify your friends, loved ones, and colleagues that the latest version of RHEL is available with plenty of enhancements.
-
Linux Sees Massive Performance Increase from a Single Line of Code
With one line of code, Intel was able to increase the performance of the Linux kernel by 4,000 percent.
-
Fedora KDE Approved as an Official Spin
If you prefer the Plasma desktop environment and the Fedora distribution, you're in luck because there's now an official spin that is listed on the same level as the Fedora Workstation edition.
-
New Steam Client Ups the Ante for Linux
The latest release from Steam has some pretty cool tricks up its sleeve.
-
Gnome OS Transitioning Toward a General-Purpose Distro
If you're looking for the perfectly vanilla take on the Gnome desktop, Gnome OS might be for you.
-
Fedora 41 Released with New Features
If you're a Fedora fan or just looking for a Linux distribution to help you migrate from Windows, Fedora 41 might be just the ticket.
-
AlmaLinux OS Kitten 10 Gives Power Users a Sneak Preview
If you're looking to kick the tires of AlmaLinux's upstream version, the developers have a purrfect solution.
-
Gnome 47.1 Released with a Few Fixes
The latest release of the Gnome desktop is all about fixing a few nagging issues and not about bringing new features into the mix.