Archived
1
1
Fork 0

improve footer styling, bump version

This commit is contained in:
Josh Lay 2023-05-05 17:43:21 -05:00
parent 1f79d59f54
commit b4b45d971c
Signed by: jlay
GPG key ID: B265E45CACAD108A
2 changed files with 22 additions and 2 deletions

View file

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "amdgpu-stats" name = "amdgpu-stats"
version = "0.1.14" version = "0.1.15"
description = "A module/TUI for AMD GPU statistics" description = "A module/TUI for AMD GPU statistics"
authors = ["Josh Lay <pypi@jlay.io>"] authors = ["Josh Lay <pypi@jlay.io>"]
repository = "https://github.com/joshlay/amdgpu_stats" repository = "https://github.com/joshlay/amdgpu_stats"
@ -14,7 +14,7 @@ textual = ">=0.16.0"
humanfriendly = ">=10.0" humanfriendly = ">=10.0"
[tool.poetry.scripts] [tool.poetry.scripts]
amdgpu-stats = "amdgpu_stats.tui:start" amdgpu-stats = "amdgpu_stats:textual_run"
[build-system] [build-system]
requires = ["poetry-core"] requires = ["poetry-core"]

View file

@ -40,3 +40,23 @@ Header {
content-align: center middle; content-align: center middle;
background: $panel; background: $panel;
} }
Footer {
background: #073b61;
dock: bottom;
height: 1;
}
.footer--highlight {
background: #81a1c1;
color: #434c5e;
}
.footer--highlight-key {
background: #88c0d0;
color: #434c5e;
}
.footer--key {
background: #004578;
}