awesome: add a keybind to run notetaker
in a
...floating window
This commit is contained in:
parent
c2ead888dd
commit
4d5e17c46f
|
@ -283,6 +283,10 @@ globalkeys = gears.table.join(
|
|||
awful.client.focus.byidx(1)
|
||||
end, { description = "focus next by index", group = "client" }),
|
||||
|
||||
awful.key({ modkey }, "n", function()
|
||||
awful.util.spawn "alacritty --class notetaker_window --command notetaker"
|
||||
end, { description = "open today's daily note", group = "client" }),
|
||||
|
||||
awful.key({ modkey }, "w", function()
|
||||
mymainmenu:show()
|
||||
end, { description = "show main menu", group = "awesome" }),
|
||||
|
@ -590,6 +594,7 @@ awful.rules.rules = {
|
|||
"Sxiv",
|
||||
"Tor Browser", -- Needs a fixed window size to avoid fingerprinting by screen size.
|
||||
"Wpa_gui",
|
||||
"notetaker_window",
|
||||
"veromix",
|
||||
"xtightvncviewer",
|
||||
"zoom",
|
||||
|
|
Loading…
Reference in a new issue