mirror of https://github.com/fairyglade/ly.git
32 lines
355 B
Zig
32 lines
355 B
Zig
pub const Animation = enum {
|
|
none,
|
|
doom,
|
|
matrix,
|
|
colormix,
|
|
};
|
|
|
|
pub const DisplayServer = enum {
|
|
wayland,
|
|
shell,
|
|
xinitrc,
|
|
x11,
|
|
};
|
|
|
|
pub const Input = enum {
|
|
info_line,
|
|
session,
|
|
login,
|
|
password,
|
|
};
|
|
|
|
pub const ViMode = enum {
|
|
normal,
|
|
insert,
|
|
};
|
|
|
|
pub const Bigclock = enum {
|
|
none,
|
|
en,
|
|
fa,
|
|
};
|