window title reporting

This commit is contained in:
2026-07-07 00:06:59 +01:00
parent c431c389e3
commit 94ba0e2539
2 changed files with 4 additions and 1 deletions
+2 -1
View File
@@ -44,7 +44,8 @@ other drivers, track conditions and so on so forth
## Todos
- [ ] Make the program report what its doing as the window title `\x1b]0;TITLE\x7`
- [X] Make the program report what its doing as the window title `\x1b]0;TITLE\x07`
Quicker than I thought. Just have to maintain it
- [ ] Add a way to check the unit of a given variable
Expand on this concept by creating conversions for those units
- [ ] Remove all the `slog.logger` passing and struct members and just configure
+2
View File
@@ -16,6 +16,8 @@ import (
)
func initApplication() {
fmt.Fprint(os.Stdout, "\x1b]0;ESDI\x07")
// 1. This is the first initialization setup we do so we can log
err := setupLogger()
if err != nil {