Change default box_position_v to 0.5

This can potentially be confusing to users.

Signed-off-by: AnErrupTion <anerruption@disroot.org>
This commit is contained in:
AnErrupTion 2026-07-07 12:22:43 +02:00
parent 5ccd91c132
commit fb544b3357
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View File

@ -104,8 +104,8 @@ border_fg = 0x00FFFFFF
box_position_h = 0.5 box_position_h = 0.5
# Relative vertical position from the bottom of the screen # Relative vertical position from the bottom of the screen
# default: 0.4 # default: 0.5
box_position_v = 0.4 box_position_v = 0.5
# Title to show at the top of the main box # Title to show at the top of the main box
# If set to null, none will be shown # If set to null, none will be shown

View File

@ -24,7 +24,7 @@ bigclock_seconds: bool = false,
blank_box: bool = true, blank_box: bool = true,
border_fg: u32 = 0x00FFFFFF, border_fg: u32 = 0x00FFFFFF,
box_position_h: f32 = 0.5, box_position_h: f32 = 0.5,
box_position_v: f32 = 0.4, box_position_v: f32 = 0.5,
box_title: ?[]const u8 = null, box_title: ?[]const u8 = null,
brightness_down_cmd: [:0]const u8 = build_options.prefix_directory ++ "/bin/brightnessctl -q -n s 10%-", brightness_down_cmd: [:0]const u8 = build_options.prefix_directory ++ "/bin/brightnessctl -q -n s 10%-",
brightness_down_key: ?[]const u8 = "F5", brightness_down_key: ?[]const u8 = "F5",