Awesomewm
Fleetingdebug
local naughty = require("naughty")
local awful = require("awful")
naughty.notify(
{
preset = naughty.config.presets.critical,
title = "Some debug text",
text = string.format("%s", client.focus.instance)
}
)
Put that content into ~/test.lua
Then run
awesome-client < ~/test.lua