Skip to content

Latest commit

 

History

History
33 lines (33 loc) · 838 Bytes

README.md

File metadata and controls

33 lines (33 loc) · 838 Bytes

Tex Files Text Realtime Counter

Intro

A simple tkinter program for displaying tex file count and ddl

Usage

Prerequisite

Make sure you already install Tex environment and have TeXcount package install in your path

Install deps

poetry install

Configure Config File

configure config json file as following, multiple files is possible and will be displayed in the order of configs.files

{
    "files": [
        {
            "filename": "path_to_tex",
            "display": "display_name"
        },
        {
            "filename": "path_to_folder/**/*.tex",
            "display": ""
        }
    ],
    "ddl": "2022-05-23 23:00",
    "time_format": "%Y-%m-%d %H:%M",
    "show_total": false
}

Run Counter

python counter.py CONFIG_FILE