-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathconfig.py
25 lines (19 loc) · 811 Bytes
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from tabs.bitcoin import BitcoinPrice, Bitcoind
from tabs.sysinfo import SystemStats, DiskUsage
from tabs.uptime import WebsiteUptime
import os
# Add any tabs you want to be visible here
tabs = [ # Track a running Bitcoin node
#Bitcoind({"host": "http://127.0.0.1:8332",
# "username": "bitcoinrpc",
# # Read the password from a file
# "password": "password" }),
# A Bitcoin price ticker
#BitcoinPrice(),
# Displays CPU, RAM usage and uptime
SystemStats(),
# Displays disk usage
DiskUsage(),
# Tracks website uptime
WebsiteUptime({"websites": [ {"name": "Google",
"url": "http://google.com"} ] })]