dotfiles/scripts/wlbg/src/options.zig

11 lines
298 B
Zig
Raw Normal View History

2023-10-28 19:18:37 +02:00
const std = @import("std");
// Framerate
pub const fps = 30;
// Draw backgrounds aligned with same value or individually with different val.
2024-01-26 18:39:17 +01:00
pub const multihead_mode: enum { combined, individual } = .combined;
2023-10-28 19:18:37 +02:00
// Time between background changes
pub const refresh_time = std.time.ms_per_min * 5;