mirror of
https://github.com/streamwall/streamwall.git
synced 2026-01-27 07:22:50 -05:00
6 lines
265 B
JavaScript
6 lines
265 B
JavaScript
export const WIDTH = 1920
|
|
export const HEIGHT = 1080
|
|
export const GRID_COUNT = 3 // Note: if greater than 3, keyboard shortcuts may need reworking
|
|
export const SPACE_WIDTH = Math.floor(WIDTH / GRID_COUNT)
|
|
export const SPACE_HEIGHT = Math.floor(HEIGHT / GRID_COUNT)
|