-
-
Notifications
You must be signed in to change notification settings - Fork 210
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #142 from RussNelson/default_config
add a default YAML and change config to use it.
- Loading branch information
Showing
6 changed files
with
198 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
--- | ||
display: | ||
# Specify the display orientation for this theme: portrait or landscape | ||
DISPLAY_ORIENTATION: landscape | ||
|
||
static_images: | ||
# Specify what static images we want to show on the display | ||
# You can create additional records here, the name of the entry must be unique and contain at a minimum the PATH. | ||
# Images are drawn in the order they are listed below, the top image will be drawn first (so places images back to front) | ||
# IMAGE_NAME: | ||
# PATH: | ||
# X: | ||
# Y: | ||
# WIDTH: | ||
# HEIGHT: | ||
BACKGROUND: | ||
PATH: blackground-landscape.png | ||
X: 0 | ||
Y: 0 | ||
WIDTH: 480 | ||
HEIGHT: 320 | ||
|
||
STATS: | ||
# Backplate RGB LED color (for HW revision 'flagship' devices only) | ||
DISPLAY_RGB_LED: 255, 0, 0 | ||
DATE: | ||
# In seconds. Longer intervals cause this to refresh more slowly. | ||
# Setting to lower values will display near real time data, | ||
# but may cause significant CPU usage or the display not to update properly | ||
INTERVAL: 1 | ||
DAY: | ||
TEXT: | ||
SHOW: True | ||
X: 10 | ||
Y: 16 | ||
FONT: roboto/Roboto-Bold.ttf | ||
FONT_SIZE: 80 | ||
FONT_COLOR: 200, 200, 200 | ||
BACKGROUND_COLOR: 0, 0, 0 | ||
HOUR: | ||
TEXT: | ||
SHOW: True | ||
X: 10 | ||
Y: 160 | ||
FONT: roboto/Roboto-Bold.ttf | ||
FONT_SIZE: 80 | ||
FONT_COLOR: 200, 200, 200 | ||
BACKGROUND_COLOR: 50, 0, 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
STATS: | ||
CPU: | ||
PERCENTAGE: | ||
# In seconds. Longer intervals cause this to refresh more slowly. | ||
# Setting to lower values will display near real time data, | ||
# but may cause significant CPU usage or the display not to update properly | ||
INTERVAL: 1 | ||
TEXT: | ||
SHOW: False | ||
GRAPH: | ||
SHOW: False | ||
FREQUENCY: | ||
# In seconds. Longer intervals cause this to refresh more slowly. | ||
# Setting to lower values will display near real time data, | ||
# but may cause significant CPU usage or the display not to update properly | ||
INTERVAL: 5 | ||
TEXT: | ||
SHOW: False | ||
LOAD: | ||
# In seconds. Longer intervals cause this to refresh more slowly. | ||
# Setting to lower values will display near real time data, | ||
# but may cause significant CPU usage or the display not to update properly | ||
INTERVAL: 5 | ||
ONE: | ||
TEXT: | ||
SHOW: False | ||
FIVE: | ||
TEXT: | ||
SHOW: False | ||
FIFTEEN: | ||
TEXT: | ||
SHOW: False | ||
TEMPERATURE: | ||
INTERVAL: 5 | ||
TEXT: | ||
SHOW: False | ||
GPU: | ||
# In seconds. Longer intervals cause this to refresh more slowly. | ||
# Setting to lower values will display near real time data, | ||
# but may cause significant CPU usage or the display not to update properly | ||
INTERVAL: 1 | ||
PERCENTAGE: | ||
GRAPH: | ||
SHOW: False | ||
TEXT: | ||
SHOW: False | ||
MEMORY: | ||
GRAPH: | ||
SHOW: False | ||
TEXT: | ||
SHOW: False | ||
SHOW_UNIT: False | ||
TEMPERATURE: | ||
TEXT: | ||
SHOW: False | ||
SHOW_UNIT: False | ||
MEMORY: | ||
# In seconds. Longer intervals cause this to refresh more slowly. | ||
# Setting to lower values will display near real time data, | ||
# but may cause significant CPU usage or the display not to update properly | ||
INTERVAL: 5 | ||
SWAP: | ||
GRAPH: | ||
SHOW: False | ||
VIRTUAL: | ||
GRAPH: | ||
SHOW: False | ||
USED: | ||
SHOW: False | ||
SHOW_UNIT: False | ||
FREE: | ||
SHOW: False | ||
SHOW_UNIT: False | ||
PERCENT_TEXT: | ||
SHOW: False | ||
SHOW_UNIT: False | ||
DISK: | ||
INTERVAL: 10 | ||
USED: | ||
GRAPH: | ||
SHOW: False | ||
TEXT: | ||
SHOW: False | ||
SHOW_UNIT: False | ||
PERCENT_TEXT: | ||
SHOW: False | ||
SHOW_UNIT: False | ||
TOTAL: | ||
TEXT: | ||
SHOW: False | ||
SHOW_UNIT: False | ||
FREE: | ||
TEXT: | ||
SHOW: False | ||
SHOW_UNIT: False | ||
NET: | ||
INTERVAL: 1 | ||
WLO: | ||
UPLOAD: | ||
TEXT: | ||
SHOW: False | ||
UPLOADED: | ||
TEXT: | ||
SHOW: False | ||
DOWNLOAD: | ||
TEXT: | ||
SHOW: False | ||
DOWNLOADED: | ||
TEXT: | ||
SHOW: False | ||
ETH: | ||
UPLOAD: | ||
TEXT: | ||
SHOW: False | ||
UPLOADED: | ||
TEXT: | ||
SHOW: False | ||
DOWNLOAD: | ||
TEXT: | ||
SHOW: False | ||
DOWNLOADED: | ||
TEXT: | ||
SHOW: False | ||
DATE: | ||
# In seconds. Longer intervals cause this to refresh more slowly. | ||
# Setting to lower values will display near real time data, | ||
# but may cause significant CPU usage or the display not to update properly | ||
INTERVAL: 1 | ||
DAY: | ||
TEXT: | ||
SHOW: False | ||
HOUR: | ||
TEXT: | ||
SHOW: False | ||
|