Konubinix' opinionated web of thoughts

Debug Awesomewm

Fleeting

debug awesomewm

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