mirror of
https://github.com/streamwall/streamwall.git
synced 2025-12-05 17:35:36 -05:00
8 lines
292 B
JavaScript
8 lines
292 B
JavaScript
export const WIDTH = 1920
|
|
export const HEIGHT = 1080
|
|
export const GRID_COUNT = 3
|
|
export const SPACE_WIDTH = Math.floor(WIDTH / GRID_COUNT)
|
|
export const SPACE_HEIGHT = Math.floor(HEIGHT / GRID_COUNT)
|
|
export const DATA_URL = 'https://woke.net/csv'
|
|
export const REFRESH_INTERVAL = 5 * 60 * 1000
|