Developer Tips: Backgrounding & System Integration

Best practices for making your app a first-class citizen

How your app should integrate with elementary OS and run in the background can be a tricky topic; other platforms have different conventions like minimizing to a system tray or being sort of document-based instead of app-based, which can lead to weird interactions if carried over to elementary OS. So what’s the right way to run in the background and integrate with the OS? Let’s take a look.

Backgrounding Your App

The first step is to have your app continue to do work while not in the foreground. In elementary OS, we encourage an “Always Saved” user workflow along with sane background tasks. Together, these mean users don’t have to worry about saving things or being careful with closing apps, as everything should just work and come back how they left it.

If your app’s main window is closed, you can override the delete_event to continue to do work and integrate with the OS through the Dock, Applications Menu, and Notifications. This is similar to how Mail keeps checking for incoming emails, Music keeps on playing, and AppCenter continues updates all when their respective windows are closed.

Always respect the user’s resources and don’t run in the background if you don’t need to. But if it makes sense for your app and the user would expect it, it can be a great experience. Just be sure to close down your app to free up resources when it’s not doing any work.

Dock & Applications Menu Integration

The most immediately visible aspect of system integration—and one that will help when backgrounding your app—is your app’s launcher, shown in the Dock and Applications Menu. This is minimally your app’s icon and name, but there’s a whole bunch of utility here you are able to use.

QuickLists

QuickLists are shown when right/secondary-clicking your app’s icon in the Dock and Applications Menu. There are two types: static, and dynamic.

Static QuickLists always display in the Dock and Applications Menu, whether or not the app is open.

Static QuickLists always display in the Dock and Applications Menu, whether or not the app is open.

Static QuickLists are simpler to implement—they’re a FreeDesktop.org spec, and are implemented completely within the app launcher file. And since they’re unchanging, they show even when your app is closed, plus they’re searchable in the Applications Menu. If your app’s actions don’t change, definitely opt for a static QuickList.

Dynamic QuickLists use the LibUnity library and require a little more work to get up and running, but can change based on the state of your running app. They also only display in the Dock, and not in the Applications Menu since they are used with running apps. If you have certain contextual actions that change or don’t make sense when the app isn’t running, opt for these.

Whether you use static or dynamic, QuickLists are the best way for your app to expose actions to your users outside of your app window, like when the window is on a different workspace or closed altogether.

Badges

Your app can specify a numeric badge on its launcher icon, and this will be displayed to users in both the Applications Menu and on the Dock.

Badges show up in the Dock and Applications Menu.

Badges show up in the Dock and Applications Menu.

In fact, if your app is in the background and adds a numeric badge, it will be added to the end of the dock even if it’s not pinned and the window is not open. This means badges are a great way to quietly signal that there is new, actionable content waiting in your app that the user is likely to care about.

Opening your app should typically clear any badges; check the HIG entry for more info.

Progress Bars

Your app can use a progress bar in the Dock via LibUnity.

Progress bars show up on the Dock, whether your app window is open or not.

Progress bars show up on the Dock, whether your app window is open or not.

Progress bars are the best way to communicate an ongoing task, like a file transfer or video rendering. Like badges, adding a progress bar will add your app to the Dock to show it, so it’s a great way to signal an ongoing background process without having to build any extra UI.

Check the HIG entry for more info.

Notifications

Notifications are another extremely powerful way to integrate your app with elementary OS. From the HIG:

Notifications play a sound and are displayed as bubbles just below the system indicators. They briefly appear on screen where they can be selected to open the relevant app or manually dismissed by hitting the X icon. After a short time, they automatically slide away. Missed notifications can be seen in and cleared from the Notification Center indicator.

Importantly, users are always in control of notifications and whether or not they appear. So just because your app sends one doesn’t mean the user saw it—they may have been looking away, their system might be in Do Not Disturb mode, or they may have disabled notifications for your app altogether.

Notifications pop up at the top-right of the primary display.

Notifications pop up at the top-right of the primary display.

But used correctly, notifications are the most visible way to expose important, time-sensitive information to users. And your app doesn’t have to be drawing a window to use them; in fact, they’re most useful when no window is open at all, as it gives you a consistent, system-provided place to provide some rich information to the user and lead them back into your app.

Notifications are also super useful due to the Notifications Center indicator: it retains sent notifications, meaning it can be used to persist changes in status. All together, notifications are the best and most visible way to both get information in front of your user, and persist it for later action.

So what about Indicators?

System Indicators are indeed a feature of elementary OS, but they’re reserved for use by the system to communicate system-wide statuses.

System Indicators are displayed based on context.

System Indicators are displayed based on context.

The HIG entry goes into more detail, but in summary: application indicators are an anti-pattern, and not supported in elementary OS.

Apps should run in the background when it makes sense, and use the great ways to integrate into the OS through the Dock, Applications Menu, and Notifications. This helps keep users in control of their system and allows for deeper system integration when it makes sense—like when we added static QuickLists and dock badges to the Applications Menu.

I hope this helps you build great apps for your users on elementary OS and AppCenter! We’ve written a handful of other Developer Tips articles to guide you. Is there an aspect of developing for AppCenter and elementary OS that we haven’t covered? Let us know on social media!


Thank You

Thanks to all of our supporters, backers, and customers! Your contributions make elementary possible. If you’d like to help build and improve elementary OS, don’t hesitate to Get Involved.

Some rights reserved

Join the Discussion on Social Media

Up Next

The System Settings Redesign Has Landed

OS 8 progress during March

AppCenter Spotlight: Tootle

Lightning fast client for Mastodon

AppCenter Spotlight: Transporter

Hassle-free file sharing

Related