mirror of https://github.com/fairyglade/ly.git
Fix typo & remove unused import
Signed-off-by: AnErrupTion <anerruption@disroot.org>
This commit is contained in:
parent
7cfb947187
commit
6d7dbb9f27
|
@ -67,7 +67,7 @@ border_fg = 0x00FFFFFF
|
|||
# If set to null, none will be shown
|
||||
box_title = null
|
||||
|
||||
# Brightness increase command
|
||||
# Brightness decrease command
|
||||
brightness_down_cmd = $PREFIX_DIRECTORY/bin/brightnessctl -q s 10%-
|
||||
|
||||
# Brightness decrease key, or null to disable
|
||||
|
|
|
@ -1,13 +1,11 @@
|
|||
const std = @import("std");
|
||||
const TerminalBuffer = @import("../TerminalBuffer.zig");
|
||||
const enums = @import("../../enums.zig");
|
||||
const ini = @import("zigini");
|
||||
const Environment = @import("../../Environment.zig");
|
||||
const generic = @import("generic.zig");
|
||||
|
||||
const Allocator = std.mem.Allocator;
|
||||
const DisplayServer = enums.DisplayServer;
|
||||
const Ini = ini.Ini;
|
||||
const EnvironmentLabel = generic.CyclableLabel(Environment);
|
||||
|
||||
const Session = @This();
|
||||
|
|
Loading…
Reference in New Issue