blob: 8d0ccd3c35707fdfb8b72b99f627fed20eb5e4f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
# ╔════════════════════════════════════════════════════════════╗
# ║ 🎞️ Animation Settings ║
# ╚════════════════════════════════════════════════════════════╝
# Screen animation style
animation = colormix
# animation = gameoflife
# ╔════════════════════════════════════════════════════════════╗
# ║ 🕒 Clock Settings ║
# ╚════════════════════════════════════════════════════════════╝
# Enable the large clock display
bigclock = en
# Use 24-hour time format
bigclock_12hr = false
# Hide seconds in the large clock
bigclock_seconds = false
# Main clock format:
# %a = abbreviated weekday
# %b = abbreviated month
# %d = day of month
# %T = HH:MM:SS
# %Y = full year
clock = %a %b %d %T %Y
# ╔════════════════════════════════════════════════════════════╗
# ║ 🎨 General Appearance ║
# ╚════════════════════════════════════════════════════════════╝
# Enable full colour rendering
full_color = true
# Character used to mask the password
asterisk = 0x2022
# How many times to retry authenticationt
auth_fails = 3
# Show a blank input box
blank_box = true
# Keep borders visible
hide_borders = false
# Show key hints on screen
hide_key_hints = false
# Show keyboard lock indicators (Caps/Num/etc.)
hide_keyboard_locks = false
# Show version string
hide_version_string = true
# ╔════════════════════════════════════════════════════════════╗
# ║ 🌈 Colour Settings ║
# ╚════════════════════════════════════════════════════════════╝
# Foreground colour
fg = 0x008AFFFF
# Background colour
# bg = 0x00003636
bg = 0x001e1e2e
# Border colour
border_fg = 0x008AFFFF
# Error text colour
error_fg = 0x00FF373D
# ╔════════════════════════════════════════════════════════════╗
# ║ 🧪 Palette
# ╚════════════════════════════════════════════════════════════╝
# colormix_col1 = 0x00003636
# colormix_col2 = 0x00008081
# colormix_col3 = 0x00FFC600
# colormix_col3 = 0x0003446
colormix_col1 = 0x00003636
colormix_col2 = 0x00008081
colormix_col3 = 0x00002929
# Game of Life settings
gameoflife_fg = 0x00003636
gameoflife_frame_delay = 3
gameoflife_entropy_interval = 10
|