all repos — tint2 @ main

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

doc/generate-doc.sh (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

# You can install md2man with gem install md2man. You need gem and ruby-dev.

set -e
set -x

md2man-roff tint2.md > tint2.1

cat header.html > manual.html
cat tint2.md | sed 's/^# TINT2 .*$/# TINT2/g' | md2man-html >> manual.html
cat footer.html >> manual.html

cat header.html > readme.html
cat ../README.md | sed 's|doc/tint2.md|manual.html|g' | md2man-html >> readme.html
cat footer.html >> readme.html