mirror of
https://codeberg.org/fairyglade/ly.git
synced 2026-08-24 14:34:19 +02:00
* Change config type for bigclock * Seprates big clock's hard codes from its logic * Adds Farsi (fa) to big clock langs * Minor changes * Makes requested changes
30 lines
No EOL
340 B
Zig
30 lines
No EOL
340 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,
|
|
};
|
|
|
|
pub const Bigclock = enum {
|
|
none,
|
|
en,
|
|
fa,
|
|
}; |