abg

Animated background for X11
git clone git://git.laack.co/abg.git
Log | Files | Refs | README | LICENSE

commit 55d7bb25c3d8d4c100d2f4b0fd537016f11fa2dd
parent eab2983b6297b5391bf4dd0180f6ee05f6cccad4
Author: Andrew Laack <andrew@laack.co>
Date:   Thu, 17 Sep 2026 10:14:35 -0500

Created docs directory

Diffstat:
MMakefile | 2+-
Rabg.1 -> docs/abg.1 | 0
Adocs/future_changes.md | 12++++++++++++
3 files changed, 13 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -12,7 +12,7 @@ release-build: build man: mkdir -p ${MANPREFIX}/man1 - sed "s/VERSION/${VERSION}/g" < abg.1 > ${DESTDIR}${MANPREFIX}/man1/abg.1 + sed "s/VERSION/${VERSION}/g" < docs/abg.1 > ${DESTDIR}${MANPREFIX}/man1/abg.1 chmod 644 ${DESTDIR}${MANPREFIX}/man1/abg.1 install: release-build man cp abg.out /usr/local/bin/abg diff --git a/abg.1 b/docs/abg.1 diff --git a/docs/future_changes.md b/docs/future_changes.md @@ -0,0 +1,12 @@ +# Future Changes + +I plan to continue adding more algorithms to this program. These algorithms will be specified with the `--algorithm` flag. + +Some I am considering adding: + +- Nearest neighbor traveling salesman +- Dijkstra's algorithm from the two farthest vertices + - this would likely require changes to the graph generation to increase the likelihood of shorter edges +- A* algorithm from the two farthest vertices + - this would likely require changes to the graph generation to increase the likelihood of shorter edges +