diff --git a/README.md b/README.md index c32fa9e..4f37abe 100644 --- a/README.md +++ b/README.md @@ -139,3 +139,11 @@ By default, escape sequences will be enclosed within a block of `\[ .. \]`, but can be disabled by passing `-r`. You can also specify the working directory with `-d` and exit code of last process with `-s`. +## ToDo/Known Issues + +Things that need improving: + + * The theme parser shouldn't be line-oriented nor care about whitespace. + * Icons should be customizable, maybe as icon packs. + * Better handling of 256-color and 24b-color stuff. Pragmas are in place but not active. + * Need to strip UTF-8 when outputting to a physical console as most icons fail there. diff --git a/bin/phpl-config b/bin/phpl-config index b871e0f..99b222f 100755 --- a/bin/phpl-config +++ b/bin/phpl-config @@ -40,7 +40,6 @@ $opts = cmdl_parse("hvi:d:e:a:b:s:t:n:lLE",[ "s" => "set:", "n" => "name:", "N" => "no-reload", - "class:", "l" => "list", "L" => "list-modules", "theme:" @@ -51,7 +50,7 @@ if (cmdl_get($opts,'help')) { exit(0); } -define("VERBOSE", (int)cmdl_get($opts,'verbose')); +// define("VERBOSE", (int)cmdl_get($opts,'verbose')); define("RELOAD", !cmdl_get($opts,'no-reload')); define("QUIET", false); diff --git a/modules/thermal.php b/modules/thermal.php new file mode 100644 index 0000000..1e061d4 --- /dev/null +++ b/modules/thermal.php @@ -0,0 +1,19 @@ +