Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F164819873
D49820.id153767.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
878 B
Referenced Files
None
Subscribers
None
D49820.id153767.diff
View Options
diff --git a/stand/defaults/loader.conf.5 b/stand/defaults/loader.conf.5
--- a/stand/defaults/loader.conf.5
+++ b/stand/defaults/loader.conf.5
@@ -424,6 +424,10 @@
.Dq Li beastie ,
and
.Dq Li none .
+.It Va loader_menu
+If set to
+.Dq NONE ,
+the menu will not be displayed
.It Va loader_color
If set to
.Dq NO ,
diff --git a/stand/lua/drawer.lua b/stand/lua/drawer.lua
--- a/stand/lua/drawer.lua
+++ b/stand/lua/drawer.lua
@@ -166,6 +166,10 @@
local x = menu_position.x
local y = menu_position.y
+ if string.lower(loader.getenv("loader_menu") or "") == "none" then
+ return
+ end
+
x = x + shift.x
y = y + shift.y
@@ -276,6 +280,10 @@
local menu_header_align = loader.getenv("loader_menu_title_align")
local menu_header_x
+ if string.lower(loader.getenv("loader_menu") or "") == "none" then
+ return
+ end
+
x = x + shift.x
y = y + shift.y
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Aug 5, 5:06 AM (3 h, 29 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
35950872
Default Alt Text
D49820.id153767.diff (878 B)
Attached To
Mode
D49820: loader: Add loader_menu
Attached
Detach File
Event Timeline
Log In to Comment