all repos — tint2 @ fca752849b8d3f2f992bf25f7488aa2e36c7d2a6

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

test/expand.py (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python2

# Creates directory tree printed by:
# bash -c "for d in /sys/class/power_supply/* ; do find $d/ -exec sh -c 'echo {} ; cat {} ' ';' ; done" 2>&1 | tee out.txt

import os
import sys


def flush(path, content):
  if not path:
    return
  if content.startswith("cat: %s: Is a directory" % path):
    try:
      os.makedirs("./" + path)
    except:
      pass
  elif content.startswith("cat: %s:" % path):
    with open("./" + path, "w") as f:
      pass
  else:
    with open("./" + path, "w") as f:
      f.write(content)


with open(sys.argv[1], "r") as f:
  path = None
  content = ""
  for line in f:
    if line.startswith("/"):
      flush(path, content)
      content = ""
      path = line.strip()
    else:
      content += line
  if content:
    flush(path, content)