diff options
Diffstat (limited to 'awesome')
| m--------- | awesome/awesome-wm-widgets | 0 | ||||
| -rw-r--r-- | awesome/rc.lua | 5 | 
2 files changed, 3 insertions, 2 deletions
diff --git a/awesome/awesome-wm-widgets b/awesome/awesome-wm-widgets -Subproject d1c047c78a647d0703785303c1ded6fb24ae012 +Subproject ab328b257f981e5cab2dcd4e0e77b30928736e5 diff --git a/awesome/rc.lua b/awesome/rc.lua index f5758c2..463150d 100644 --- a/awesome/rc.lua +++ b/awesome/rc.lua @@ -765,6 +765,7 @@ awful.rules.rules = {            "sptodo",            "sptrem",            "qpwgraph", +          "QjackCtl",            "gcr-prompter"          }        }, @@ -828,7 +829,7 @@ awful.rules.rules = {  -- {{{ Window Swallowing functions  ---[[  function is_terminal(c) -    return (c.class and c.class:match("St")) and true or false +    return (c.class and (c.class:match("St") or c.class:match("Alacritty"))) and true or false  end  function copy_size(c, parent_client) @@ -854,7 +855,7 @@ function get_parent_pid(child_ppid, callback)      awful.spawn.easy_async(ppid_cmd, function(stdout, stderr, reason, exit_code)          -- primitive error checking          if stderr and stderr ~= "" then -            callback(nil, false) +            callback(stderr, false)              return          end          local ppid = stdout:gsub(" ", ""):gsub("\n", "")  | 
