├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── accounts.conf ├── dashboard.sh ├── dashboard.yml.template ├── expense_categories.conf ├── fake_book.txt ├── package.json ├── screenshot.png ├── scripts ├── categories.sh ├── daily.sh ├── daily_change.sh ├── generate_fake_data.py ├── jsonify.sh ├── monthly.sh ├── monthly_balance.sh ├── monthly_change.sh ├── weekly.sh └── weekly_change.sh ├── setup.sh └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kantord/ledger-cli-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kantord/ledger-cli-dashboard/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kantord/ledger-cli-dashboard/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kantord/ledger-cli-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /accounts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kantord/ledger-cli-dashboard/HEAD/accounts.conf -------------------------------------------------------------------------------- /dashboard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kantord/ledger-cli-dashboard/HEAD/dashboard.sh -------------------------------------------------------------------------------- /dashboard.yml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kantord/ledger-cli-dashboard/HEAD/dashboard.yml.template -------------------------------------------------------------------------------- /expense_categories.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kantord/ledger-cli-dashboard/HEAD/expense_categories.conf -------------------------------------------------------------------------------- /fake_book.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kantord/ledger-cli-dashboard/HEAD/fake_book.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kantord/ledger-cli-dashboard/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kantord/ledger-cli-dashboard/HEAD/screenshot.png -------------------------------------------------------------------------------- /scripts/categories.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kantord/ledger-cli-dashboard/HEAD/scripts/categories.sh -------------------------------------------------------------------------------- /scripts/daily.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | ledger -f $1 reg $2 -n -D -X $4 --no-rounding $3 3 | -------------------------------------------------------------------------------- /scripts/daily_change.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kantord/ledger-cli-dashboard/HEAD/scripts/daily_change.sh -------------------------------------------------------------------------------- /scripts/generate_fake_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kantord/ledger-cli-dashboard/HEAD/scripts/generate_fake_data.py -------------------------------------------------------------------------------- /scripts/jsonify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kantord/ledger-cli-dashboard/HEAD/scripts/jsonify.sh -------------------------------------------------------------------------------- /scripts/monthly.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | ledger -f $1 reg $2 -n -M -X $4 --no-rounding $3 3 | -------------------------------------------------------------------------------- /scripts/monthly_balance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kantord/ledger-cli-dashboard/HEAD/scripts/monthly_balance.sh -------------------------------------------------------------------------------- /scripts/monthly_change.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kantord/ledger-cli-dashboard/HEAD/scripts/monthly_change.sh -------------------------------------------------------------------------------- /scripts/weekly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kantord/ledger-cli-dashboard/HEAD/scripts/weekly.sh -------------------------------------------------------------------------------- /scripts/weekly_change.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kantord/ledger-cli-dashboard/HEAD/scripts/weekly_change.sh -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kantord/ledger-cli-dashboard/HEAD/setup.sh -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kantord/ledger-cli-dashboard/HEAD/yarn.lock --------------------------------------------------------------------------------