mirror of
https://codeberg.org/fairyglade/ly.git
synced 2026-08-24 14:34:19 +02:00
24 lines
283 B
Zig
24 lines
283 B
Zig
pub const Animation = enum {
|
|
none,
|
|
doom,
|
|
matrix,
|
|
};
|
|
|
|
pub const DisplayServer = enum {
|
|
wayland,
|
|
shell,
|
|
xinitrc,
|
|
x11,
|
|
};
|
|
|
|
pub const Input = enum {
|
|
info_line,
|
|
session,
|
|
login,
|
|
password,
|
|
};
|
|
|
|
pub const ViMode = enum {
|
|
normal,
|
|
insert,
|
|
};
|