멋진 wm에서 블링 스크래치패드로 클라이언트를 보내도록 키 바인딩을 어떻게 구성합니까?

멋진 wm에서 블링 스크래치패드로 클라이언트를 보내도록 키 바인딩을 어떻게 구성합니까?

클라이언트를 블링의 스크래치 패드로 보낼 수 있는 바로가기를 만들고 싶습니다.

블링 스크래치 패드 부분을 초기화합니다.

local bling = require("bling")
local term_scratch = bling.module.scratchpad {
    command = "wezterm start --class spad",           -- How to spawn the scratchpad
    rule = { instance = "spad" },                     -- The rule that the scratchpad will be searched by
    sticky = true,                                    -- Whether the scratchpad should be sticky
    autoclose = true,                                 -- Whether it should hide itself when losing focus
    floating = true,                                  -- Whether it should be floating (MUST BE TRUE FOR ANIMATIONS)
    geometry = {x=360, y=90, height=900, width=1200}, -- The geometry in a floating state
    reapply = true,                                   -- Whether all those properties should be reapplied on every new opening of the scratchpad (MUST BE TRUE FOR ANIMATIONS)
    dont_focus_before_close  = false,                 -- When set to true, the scratchpad will be closed by the toggle function regardless of whether its focused or not. When set to false, the toggle function will first bring the scratchpad into focus and only close it on a second call
}

클라이언트를 해당 메모장의 키 바인딩으로 이동하지 못했습니다.

globalkeys = gears.table.join(
    awful.key({ modkey, "Shift" }, "h",
    function ()
        term_scratch:toggle()
    end ),

이해가 안 되는 문서 페이지:https://blingcorp.github.io/bling/#/module/scratch

term_scratch:toggle()객체/함수를 어떻게 사용해야 하나요 ?

시스템: Arch linux, X11, awesome-wm, awesome-wm 블링 애드온.

답변1

xprop다음 줄에서 얻은 원하는 인스턴스 이름을 설정합니다.rule = { instance = "spad" },

관련 정보