diff options
| author | Blista Kanjo | 2022-12-18 00:09:23 -0500 |
|---|---|---|
| committer | Blista Kanjo | 2022-12-18 00:09:23 -0500 |
| commit | d817cbef424bdc268a51ff20f4cd5e7eaf792ea4 (patch) | |
| tree | 2270f90aef5fa6e721cd989a99072311a8188810 /.config | |
| parent | 3e41171d59f7404ae5c3b924c7d70b37af6a135e (diff) | |
refactor: proper REGEX-ish matching for Name-based floating rules
Diffstat (limited to '.config')
| -rw-r--r-- | .config/awesome/rc.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 9b4a524..8bbfa29 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -638,8 +638,9 @@ awful.rules.rules = { -- Note that the name property shown in xprop might be set slightly after creation of the client -- and the name shown there might not match defined rules here. name = { - "Event Tester", -- xev. - "Task Manager", + "^Event Tester$", -- xev. + "^File Operation Progress$", -- fix for latest version of thunar + "^Task Manager$", }, role = { "AlarmWindow", -- Thunderbird's calendar. |
