Fix typo & remove unused import

Signed-off-by: AnErrupTion <anerruption@disroot.org>
This commit is contained in:
AnErrupTion
2025-08-29 00:07:32 +02:00
parent 7cfb947187
commit 6d7dbb9f27
2 changed files with 1 additions and 3 deletions

View File

@@ -67,7 +67,7 @@ border_fg = 0x00FFFFFF
# If set to null, none will be shown # If set to null, none will be shown
box_title = null box_title = null
# Brightness increase command # Brightness decrease command
brightness_down_cmd = $PREFIX_DIRECTORY/bin/brightnessctl -q s 10%- brightness_down_cmd = $PREFIX_DIRECTORY/bin/brightnessctl -q s 10%-
# Brightness decrease key, or null to disable # Brightness decrease key, or null to disable

View File

@@ -1,13 +1,11 @@
const std = @import("std"); const std = @import("std");
const TerminalBuffer = @import("../TerminalBuffer.zig"); const TerminalBuffer = @import("../TerminalBuffer.zig");
const enums = @import("../../enums.zig"); const enums = @import("../../enums.zig");
const ini = @import("zigini");
const Environment = @import("../../Environment.zig"); const Environment = @import("../../Environment.zig");
const generic = @import("generic.zig"); const generic = @import("generic.zig");
const Allocator = std.mem.Allocator; const Allocator = std.mem.Allocator;
const DisplayServer = enums.DisplayServer; const DisplayServer = enums.DisplayServer;
const Ini = ini.Ini;
const EnvironmentLabel = generic.CyclableLabel(Environment); const EnvironmentLabel = generic.CyclableLabel(Environment);
const Session = @This(); const Session = @This();