Creating a simple laptop notification
Path
The final step is to set up the systemd units that will monitor and trigger the execution of powerchange.sh
.
You use path
units to monitor files and directories. As you will be using upowerlog.sh
to update the upower.log
file, upower.log
is what you want to monitor. The path
unit shown in Listing 4 does that.
Listing 4
powerchange.path
01 [Unit] 02 Description= monitoring upower log 03 Wants= upowerlog.service 04 05 [Path] 06 PathModified= /home/[username]/.local/share/upower.log
We already talked about the Description
directive when explaining upowerlog.service
and the PathModified
directive is self-explanatory: It points to a file or a directory and is triggered if said file or directory is modified.
There is another new directive in powerchange.path
worth looking at in a little more depth, though. Line 3 shows a Wants
directive that points to the first unit you created, upowerlog.service
. This ensures that if upowerlog.service
is not started when you run powerchange.path
, systemd will get it started. This means you don't have to run upowerlog.service
yourself; systemd will do it for you the moment it parses the Wants= upowerlog.service
line.
You will notice that there is no call to powerchange.sh
, the script we created in Listing 3. That's because path units do not execute scripts themselves. Instead they rely on a companion service
script (usually with the same name, but with the .service
extension) to do that for them. After all, that is what service
units are for: starting scripts or programs.
powerchange.service
looks like what is shown in Listing 5. Again, this service is self-explanatory and all it does is run the powerchange.sh
script from Listing 3.
Listing 5
powerchange.service
01 [Service] 02 Type= simple 03 ExecStart= /home/[username]/.local/bin/powerchange.sh
Save both powerchange.path
and powerchange.service
to /home/[username]/.config/systemd/user/
, and you can now run powerchange.path
with
systemctl --user start powerchange.path
and check that everything works by unplugging your laptop. The notification shown in Figure 6 should pop up, warning you that your machine has been disconnected.
Walkthrough
To summarize what's going on:
- 1 When you start
powerchange.path
, systemd also startsupowerlog.service
thanks to theWants
directive inpowerchange.path
. - 2
upowerlog.service
runsupowerlog.sh
, which starts dumping the output ofupower -m
into/home/[username]/.local/share/upower.log
. - 3 Each time
/home/[username]/.local/share/upower.log
changes,powerchange.path
callspowerchange.service
. - 4
powerchange.service
runs thepowerchange.sh
script that checks to see if the line power source is connected. If it is not, it sends a notification to the desktop.
Conclusions
I hope this has helped illustrate how you can leverage a wide variety of seemingly unrelated tools to create one single project.
In any case, systemd units, the UPower system, notify-send
(and other command-line-to-desktop utilities), and Bash's daisy-chaining of terminal commands are all worth exploring further. They provide you with a rich set of tools you can use to complete all kinds of projects.
« Previous 1 2
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
-
Halcyon Creates Anti-Ransomware Protection for Linux
As more Linux systems are targeted by ransomware, Halcyon is stepping up its protection.
-
Valve and Arch Linux Announce Collaboration
Valve and Arch have come together for two projects that will have a serious impact on the Linux distribution.
-
Hacker Successfully Runs Linux on a CPU from the Early ‘70s
From the office of "Look what I can do," Dmitry Grinberg was able to get Linux running on a processor that was created in 1971.
-
OSI and LPI Form Strategic Alliance
With a goal of strengthening Linux and open source communities, this new alliance aims to nurture the growth of more highly skilled professionals.
-
Fedora 41 Beta Available with Some Interesting Additions
If you're a Fedora fan, you'll be excited to hear the beta version of the latest release is now available for testing and includes plenty of updates.
-
AlmaLinux Unveils New Hardware Certification Process
The AlmaLinux Hardware Certification Program run by the Certification Special Interest Group (SIG) aims to ensure seamless compatibility between AlmaLinux and a wide range of hardware configurations.
-
Wind River Introduces eLxr Pro Linux Solution
eLxr Pro offers an end-to-end Linux solution backed by expert commercial support.
-
Juno Tab 3 Launches with Ubuntu 24.04
Anyone looking for a full-blown Linux tablet need look no further. Juno has released the Tab 3.
-
New KDE Slimbook Plasma Available for Preorder
Powered by an AMD Ryzen CPU, the latest KDE Slimbook laptop is powerful enough for local AI tasks.
-
Rhino Linux Announces Latest "Quick Update"
If you prefer your Linux distribution to be of the rolling type, Rhino Linux delivers a beautiful and reliable experience.