From b92253eaa992329c2640ef7a63b12fd55c45653c Mon Sep 17 00:00:00 2001 From: MartorSkull Date: Fri, 1 May 2026 19:24:18 +0200 Subject: [PATCH] Updated default value to match original behaviour better --- res/config.ini | 6 +++--- src/config/Config.zig | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/res/config.ini b/res/config.ini index 9d4913b..c2d885c 100644 --- a/res/config.ini +++ b/res/config.ini @@ -98,12 +98,12 @@ blank_box = true border_fg = 0x00FFFFFF # Relative horizontal position from the end of the screen -# default: 0.5 (center) +# default: 0.5 box_position_h = 0.5 # Relative vertical position from the bottom of the screen -# default: 0.5 (center) -box_position_v = 0.5 +# default: 0.4 +box_position_v = 0.4 # Title to show at the top of the main box # If set to null, none will be shown diff --git a/src/config/Config.zig b/src/config/Config.zig index 65dbee0..9efaaf7 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -24,7 +24,7 @@ bigclock_seconds: bool = false, blank_box: bool = true, border_fg: u32 = 0x00FFFFFF, box_position_h: f32 = 0.5, -box_position_v: f32 = 0.5, +box_position_v: f32 = 0.4, box_title: ?[]const u8 = null, brightness_down_cmd: [:0]const u8 = build_options.prefix_directory ++ "/bin/brightnessctl -q -n s 10%-", brightness_down_key: ?[]const u8 = "F5",