Skip to content

Commit e22b66e

Browse files
committed
Update docs for rofication-replacement
1 parent 3bba9d6 commit e22b66e

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

content/docs/howtos/replace-notification-system.md

+8-6
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,22 @@ description: >
55
Disable Rofication and add another notification system
66
---
77

8-
{{< callout type="error" >}}
9-
This page was copied from the [Regolith 1.x website](https://regolith-linux.org) and has not been updated for Regolith 2. It may contain out of date information.
10-
{{< /callout >}}
11-
128
Regolith ships with a notification system called [Rofication](https://github.com/DaveDavenport/Rofication). It is designed to work in the background and not use pop-ups as a way of alerting the user to a new notification. Rather, a small bar item displays the current number of unread notifications and a dialog can activated to interact with the content of the current notifications. This page describes a way to install an alternative notification system which works in a more traditional way.
139

1410
We will use [dunst](https://dunst-project.org/) as an example but similar steps can be used with pretty much any other notification component.
1511

1612
1. Replace `rofication` with `dunst`:
1713

1814
```bash
19-
sudo apt install dunst
20-
sudo apt purge regolith-rofication
15+
$ sudo apt install dunst libnotify-bin
16+
```
17+
18+
This should remove Rofication automatically as the package-manager sees the conflict and resolves it. If this is not removed automatically, you can do it manually. Also, if you want to remove the remaining configuration, the following works as well:
19+
20+
```bash
21+
$ sudo apt purge regolith-rofication # remove any remaining config as well
2122
```
2223

2324
2. Log out and back in.
2425
3. Test your notifications with `notify-send test123`. You should see a pop-up notification from `dunst`.
26+

0 commit comments

Comments
 (0)