nirimgr
A manager for niri, written in Go.
This is a small project mainly directed towards learning a bit more of Go.
I've been using Niri WM for a while, and
saw a helper script by YaLTeR in the discussions, and thought, why not try
and port the same in Go.
I've used i3wm before, and it had scratchpad functionality, which I used quite
a lot. I thought this would be a great learning experience for myself, and I try to
mimic the way i3wm handles the scratchpad.
The scratchpad is very simple, but works for me. If you have any suggestions on how to improve it, please don't hesitate
to open an issue.
Q: Why not create this in Rust?
A: Because I need to improve my Golang knowledge, and this was a great opportunity for me to dive a bit deeper into
the language, as well as learn a bit more on the Niri IPC and how it works.
Installation
Using go install
Run go install github.com/soderluk/nirimgr@latest to install the latest version of nirimgr.
From GitHub Releases
Get the latest release from the Releases page.
Choose your arch and download the tarball, and optionally the checksums-file if you want to verify the archive.
To verify the archive, run sha256sum --ignore-missing -c nirimgr_x.x.x_checksums.txt (replace x.x.x with the current version of the module)
$ sha256sum --ignore-missing -c nirimgr_x.x.x_checksums.txt
nirimgr_x.x.x_linux_amd64.tar.gz: OK
After verification succeeds, extract the tarball somewhere, e.g. ~/Downloads/nirimgr.
$ mkdir -p ~/Downloads/nirimgr
$ tar xf nirimgr_x.x.x_linux_amd64.tar.gz --directory=~/Downloads/nirimgr/
The tarball includes the following files:
- CHANGELOG.md: The changelog for this version.
- LICENSE: The license file of the repository.
- nirimgr: The executable file.
- README.md: This readme.
Move the nirimgr executable somewhere in your PATH, e.g. /usr/local/bin, or ~/bin.
$ sudo cp nirimgr /usr/local/bin
Build from source
Some prerequisites necessary: nirimgr uses a justfile to make building and installing easier. Install just with cargo install just.
-
Clone the repository: git clone https://github.com/soderluk/nirimgr.git && cd nirimgr
-
Build the project with just build. This will compile the source code and create an executable nirimgr.
-
Install the executable
- Copy the executable anywhere on your path:
sudo cp nirimgr /usr/local/bin
- If you have GOPATH set, you can run
just install to install the executable in $GOPATH/bin.
Post install
Verify the version after installation:
$ nirimgr --version
nirimgr version vx.x.x (commit: aaaaaaa, built at: 2025-07-25T06:05:16Z)
Configuration
The configuration file for nirimgr should be put in ~/.config/nirimgr/config.json
Example configuration (see: config.json):
{
// Define the scratchpad workspace name here.
"scratchpadWorkspace": "scratchpad",
// Set the log level of the nirimgr command. Supported levels "DEBUG", "INFO", "WARN", "ERROR"
"logLevel": "DEBUG",
// Window and/or Workspace rules and actions to do on the matched window/workspace.
"rules": [
{
// This rule matches workspaces.
"type": "workspace",
"match": [
{
// Matches on the workspace name "chat"
"name": "chat"
}
],
"exclude": [
// Add any excluded matches here.
{
"name": "discord"
}
],
"actions": {
// Focus the workspace
"FocusWorkspace": {},
// Move the workspace to the monitor eDP-1
// I.e. we always want our chat workspace on a specific monitor.
"MoveWorkspaceToMonitor": {
"output": "eDP-1"
}
}
},
{
"type": "workspace",
"match": [
{
// Match the workspace named "work", and if it's being on output "eDP-1".
"name": "work",
"output": "eDP-1"
}
],
"actions": {
// Focus the workspace.
"FocusWorkspace": {},
// Move the workspace to the monitor on the right.
// I.e. we always want to move our work workspace to the "main" screen, if it exists.
"MoveWorkspaceToMonitorRight": {}
}
},
{
// This rule matches a window.
"type": "window",
"match": [
{
// Match the title Bitwarden
"title": "Bitwarden",
// Match the app-id zen
"appId": "zen"
}
],
"exclude": [
// Add any exclude matches here.
{
"title": "Firefox"
}
],
"actions": {
// Move the window to floating.
"MoveWindowToFloating": {},
// Set the window width to a fixed 400 pixels.
"SetWindowWidth": {
"change": {
"SetFixed": 400
}
},
// Set the window height to a fixed 600 pixels.
"SetWindowHeight": {
"change": {
"SetFixed": 600
}
}
}
},
{
"type": "window",
"match": [
{
// Match the app-id org.gnome.Calculator
"appId": "org.gnome.Calculator"
}
],
"actions": {
// Move the calculator to floating
"MoveWindowToFloating": {},
// Move the floating window to a fixed x, y coordinate of 800, 200
"MoveFloatingWindow": {
"x": {
"SetFixed": 800
},
"y": {
"SetFixed": 200
}
},
// Set the floating window width to a fixed 50 pixels.
"SetWindowWidth": {
"change": {
"SetFixed": 50
}
},
// Set the floating window height to a fixed 50 pixels.
"SetWindowHeight": {
"change": {
"SetFixed": 50
}
}
}
}
],
// Added in v0.3.0: Spawn or focus an app.
"spawnOrFocus": {
// The commands lists the commands you want to run for a specified matching app-id.
// Note that the command key should be the app-id, e.g. Slack -> not slack (if slack's app-id is Slack)
"commands": {
// special-term is a named alacritty window, that we want to run, configure as a key-bind in niri config.
// e.g. Mod+Shift+T { spawn "nirimgr" "scratch" "spawn-or-focus" "special-term" }
"special-term": [
"alacritty",
"--class",
"special-term",
"-e",
"zellij",
"-l",
"default"
],
// special-btop is a named alacritty window, that runs btop.
// Niri key-bind: Mod+Shift+B { spawn "nirimgr" "scratch" "spawn-or-focus" "special-btop" }
"special-btop": ["alacritty", "--class", "special-btop", "-e", "btop"],
// Spawn or focus Slack
"Slack": ["/usr/bin/slack"],
// Spawn or focus deezer.
"deezer": ["flatpak", "run", "dev.aunetx.deezer"]
},
// The rules can either be added as separate matches, but this also works, since we just match the first
// window that matches the specified app-id.
"rules": {
"match": [
{
"appId": "special-term"
},
{
"appId": "special-btop"
},
{
"appId": "Slack"
},
{
"appId": "deezer"
}
]
}
},
// Configure actions to be run on the scratchpad window that was shown.
"showScratchpadActions": {
// Always center the shown scratchpad window.
"CenterWindow": {}
},
// Configure any custom events you want to listen to here.
"events": {
// The event name to listen to.
"WindowUrgencyChanged": {
// Any actions you want to do when the event happens.
// In this example, when a WindowUrgencyChanged event happens, we want to focus the urgent window, and unset the window urgency.
"FocusWindow": {},
"UnsetWindowUrgent": {}
}
}
}
- Added in v0.2.0: Configuration: Rule type - The new rule type defines if the rule should apply to a window or a workspace.
- Added in v0.3.0: Scratch command: spawn-or-focus - The new scratch command supports spawning defined apps, or focusing them if they're already running.
- Added in v0.4.0: Configuration: Add new configuration showScratchpadActions, i.e. define actions to be performed on the shown scratchpad window.
- Added in v0.5.0: Listen on custom events and perform actions on the event target, such as window/workspace.
The rules are the same as the window-rule in Niri configuration. Currently we only match the window on a given title or app-id.
Then specify which action you want to do with the matched window. In the example above, the gnome calculator
is matched, then we move the calculator window to floating, move the floating window to a specified x and y coordinate,
set the window width and height to a fixed amount.
In addition to the window matching, we can match workspaces. The workspaces matches on a given name or output. The actions are performed
on the matched workspace.
Each action needs to be a separate action. The actions are applied sequentially on the window.
The actions you can use can be found in the niri ipc documentation
NOTE: Currently only WindowsChanged, WindowOpenedOrChanged and WindowClosed window events are watched. For workspaces, the
WorkspacesChanged event is watched.
Since v0.5.0 you can listen to specified events, and perform actions on them. As an example, you can listen to the WindowUrgencyChanged event,
focus the urgent window, and unset the window urgency.
NOTE: This addition is just a simple listen to this event and perform that action on the target, i.e. there are no conditions that can be applied to
the action. E.g. Only focus the window if the WindowUrgencyChanged sets the urgency to true. The focus will also happen when the urgency is set to false.
Please feel free to open a PR if you have other thoughts what we could do with nirimgr.
Usage
To use nirimgr, it provides the following CLI-commands:
nirimgr events: The events command starts listening on the niri event-stream.
nirimgr scratch [move|show|spawn-or-focus [appId]]: The scratch command moves a window to the scratchpad workspace, or shows the window (moves the window
to the currently active workspace) from the scratchpad workspace. This command should be configured
as a key-bind in niri configuration.
Added in v0.3.0: the spawn-or-focus command takes as parameter the app-id of the window you want to open/focus.
See the configuration spawnOrFocus to see how you should configure the apps.
nirimgr list [actions|events]: The list command will list all the available actions or events, so you don't need to remember them all.
To use the scratchpad with Niri, you need to have a named workspace scratchpad, or if you want to configure it,
set the scratchpadWorkspace configuration option to something else "scratchpadWorkspace": "scratch".
Set it up in niri config like so:
workspace "scratchpad" // or whatever you configured it to be.
spawn-at-startup "niri" "msg" "action" "focus-workspace-down"
The above will create a new named workspace, scratchpad, and focus immediately on the next
workspace.
Then if you want to use the scratchpad, configure nirimgr scratch move and nirimgr scratch show
in a key-bind, like so:
binds {
...
Mod+S {
spawn "nirimgr" "scratch" "move"
}
Mod+Shift+S {
spawn "nirimgr" "scratch" "show"
}
// Spawn or focus deezer and Slack.
Mod+Shift+M {
spawn "nirimgr" "scratch" "spawn-or-focus" "deezer"
}
Mod+Shift+C {
spawn "nirimgr" "scratch" "spawn-or-focus" "Slack"
}
...
}
Press Mod+S to move the currently focused window to the scratchpad workspace, and Mod+Shift+S to
move it back.
Press Mod+Shift+C to spawn Slack, or focus it if it's already open and running.
If you have multiple windows in the scratchpad, the command will move the last window to
the current workspace (this is pretty much how i3wm did the scratchpad functionality).
If you want to use the events (i.e. listen to the niri event-stream and do actions based on the events)
you need to start the nirimgr events command on startup like so:
spawn-at-startup "nirimgr" "events"
This will listen on the event stream, and react to the matching windows accordingly. You need to
define the rules in config.json and add the actions you want to do to the window when the
event happens.
Justfile
The following actions can be performed with the just command:
build: Builds the source into an executable
coverage: Opens up the code coverage in the browser
fmt: Runs go fmt on the project.
help: Lists the available recipes. This is the default, if you run just without arguments.
install: Installs the executable in your GOPATH/bin.
run RUNARGS: Runs the module with RUNARGS. If the RUNARGS contains a space, you need to quote them, e.g. just run "list actions"
test: Runs go test on the project.
version: Prints the version.
vet: Runs go vet on the project.
Acknowledgements
Of course the biggest one goes to Niri WM and YaLTeR for an awesome manager!
Since this is mostly a learning project for me, I had to look a bit more into a few of existing libraries,
the most notable being niri-float-sticky
The goroutine handling of the event stream felt like a better approach than I had before, so thanks to the author for a great library!
The nirimgr scratch spawn-or-focus [app-id] is heavily inspired by the discussion here
Known issues
Note: The below has been worked around by manually focusing the moved window.
There seems to be an issue with niri that it doesn't respect the focus true/false when moving a window.
And here's the PR to fix it (as of now, it hasn't been yet merged.)