내 친구가 최근 나에게 Awesome tiling 창 관리자를 소개했습니다. 난 조작하려고 해rc.lua내 맘대로 구성해보세요. 이 명령이 작동하지 않는 이유를 알려줄 수 있는 사람이 있나요?
awful.key({ modkey, "Control" }, "l", function () awful.util.spawn("gnome-screensaver-command -l") end),
터미널의 명령이 작동합니다.
Linux Mint Cinnamon을 사용하기 때문에 저도 시도해 보았습니다.cinnamon-screensaver-command
터미널에서 작동합니다. 구성을 추가하는 lua 개체는 다음과 같습니다.
clientkeys = awful.util.table.join(
awful.key({ modkey, "Control" }, "l", function () awful.util.spawn("cinnamon-screensaver-command -l") end),
awful.key({ modkey, }, "f", function (c) c.fullscreen = not c.fullscreen end),
awful.key({ modkey, "Shift" }, "c", function (c) c:kill() end),
awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle ),
awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end),
awful.key({ modkey, }, "o", awful.client.movetoscreen ),
awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end),
awful.key({ modkey, }, "n",
function (c)
-- The client currently has the input focus, so it cannot be
-- minimized, since minimized clients can't have the focus.
c.minimized = true
end),
awful.key({ modkey, }, "m",
function (c)
c.maximized_horizontal = not c.maximized_horizontal
c.maximized_vertical = not c.maximized_vertical
end)
)
감사해요
답변1
재설치를 잘 하셨나요?
다음을 시도해 볼 수도 있습니다.https://awesomewm.org/doc/api/modules/awful.util.html#spawn_with_shell
spawn
또는 명령이 실행되고 있는지 확인하기 위해 다른 것을 입력하십시오 .
또한, gnome-screensaver-command
당신의 길에?