all repos — tint2 @ 405c2c9286a719481de59bda030dd1ee99a5f994

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

test/expand2.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
#!/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 or "/" not in path:
    return
  path = "./" + path
  dir_path, fname = path.rsplit("/", 1)
  try:
    os.makedirs("./" + dir_path)
  except:
    pass
  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 "/" in line and ":" in line:
      flush(path, content)
      content = ""
      path, content = line.split(":", 1)
    else:
      content += line
  if content:
    flush(path, content)