Awesome-wm 通知到右下角
Awesome-wm notifications to bottom-right
我正在寻找一种将所有桌面通知从右上角移动到右下角的方法,但我在谷歌搜索中只能找到此页面 https://awesomewm.org/apidoc/core_components/naughty.notification.html,它似乎解释了如何从从程序员的角度而不是从 WM 配置的角度来看。
有什么指点吗?
which seems to explain how to do it from a programmers point of view and not from the WM config point of view. Any pointers?
配置实际上是“真正的”代码。因此配置文件是(或任何module/extension)。
至于问题本身。使用出色的 git-master(即您提供的 link)的最佳方法是修改规则(git-master 版本的 ruled.notification
部分rc.lua
) 并设置 position
属性.
-- Correct way for awesome >= v4.4/git-master.
--
-- IF YOU HAVE A RECENT RC.LUA THIS SECTION IS ALREADY THERE,
-- ELSE, ADD IT.
--
-- WARNING: WILL **NOT** WORK IN < v4.4/git-master
ruled.notification.connect_signal('request::rules', function()
-- All notifications will match this rule.
ruled.notification.append_rule {
rule = { },
properties = {
screen = awful.screen.preferred,
implicit_timeout = 5,
position = "bottom_right", -- <<<<< ADD THIS
}
}
end)
如果您使用的是 3.4 到 4.3 版本,设置它的唯一方法是使用“通知预设”
-- OLD WAY, DEPRECATED in git-master/v4.4+
for _, preset in pairs(naughty.config.presets) do
preset.position = "bottom_right"
end
我正在寻找一种将所有桌面通知从右上角移动到右下角的方法,但我在谷歌搜索中只能找到此页面 https://awesomewm.org/apidoc/core_components/naughty.notification.html,它似乎解释了如何从从程序员的角度而不是从 WM 配置的角度来看。 有什么指点吗?
which seems to explain how to do it from a programmers point of view and not from the WM config point of view. Any pointers?
配置实际上是“真正的”代码。因此配置文件是(或任何module/extension)。
至于问题本身。使用出色的 git-master(即您提供的 link)的最佳方法是修改规则(git-master 版本的 ruled.notification
部分rc.lua
) 并设置 position
属性.
-- Correct way for awesome >= v4.4/git-master.
--
-- IF YOU HAVE A RECENT RC.LUA THIS SECTION IS ALREADY THERE,
-- ELSE, ADD IT.
--
-- WARNING: WILL **NOT** WORK IN < v4.4/git-master
ruled.notification.connect_signal('request::rules', function()
-- All notifications will match this rule.
ruled.notification.append_rule {
rule = { },
properties = {
screen = awful.screen.preferred,
implicit_timeout = 5,
position = "bottom_right", -- <<<<< ADD THIS
}
}
end)
如果您使用的是 3.4 到 4.3 版本,设置它的唯一方法是使用“通知预设”
-- OLD WAY, DEPRECATED in git-master/v4.4+
for _, preset in pairs(naughty.config.presets) do
preset.position = "bottom_right"
end