improve footer styling, bump version
This commit is contained in:
parent
1f79d59f54
commit
b4b45d971c
2 changed files with 22 additions and 2 deletions
|
@ -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"]
|
||||||
|
|
|
@ -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;
|
||||||
|
}
|
||||||
|
|
Reference in a new issue