all repos — tint2 @ 69274ed7f96d2fac6c7d542097d31c84569b0b5f

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

Regression tests
o9000 mrovi9000@gmail.com
commit

69274ed7f96d2fac6c7d542097d31c84569b0b5f

parent

7f7d0a0aa2a00eb0f4f1bc14a0d1f142ecd4924c

1 files changed, 1 insertions(+), 2 deletions(-)

jump to
M test/regression.pytest/regression.py

@@ -201,7 +201,7 @@ print("Last updated:", utc_datetime.strftime("%Y-%m-%d %H:%M UTC"))

def show_git_info(src_dir): - out, _ = run("cd {0}; git show -s '--format=%h %s %d'".format(src_dir), True).communicate() + out, _ = run("cd {0}; git show -s '--format=[%ci] %h %s %d'".format(src_dir), True).communicate() print("Last commit:", out.strip()) diff, _ = run("cd {0}; git diff".format(src_dir), True).communicate() diff = diff.strip()

@@ -283,7 +283,6 @@ def check_busy():

out, _ = run("top -bn5 | grep 'Cpu(s)' | grep -o '[0-9\.]* id' | cut -d ' ' -f 1", True).communicate() load_samples = [] for line in out.split("\n"): - print(line) line = line.strip() if line: load_samples.append(100. - float(line))