3 Commits

Author SHA1 Message Date
AnErrupTion
73fcb8646a Backport: setup.sh: Set STARTUP, late load Xsession
Signed-off-by: AnErrupTion <anerruption@disroot.org>
2026-08-25 23:46:28 +02:00
AnErrupTion
fb55c1c953 Backport: sysvinit: Use $PREFIX_DIRECTORY
Signed-off-by: AnErrupTion <anerruption@disroot.org>
2026-08-25 23:45:38 +02:00
AnErrupTion
65c3f200a9 Backport: systemd: Use agetty from sbin
Signed-off-by: AnErrupTion <anerruption@disroot.org>
2026-08-25 23:44:43 +02:00
49 changed files with 670 additions and 1408 deletions

View File

@@ -73,7 +73,7 @@ body:
attributes: attributes:
label: Relevant logs label: Relevant logs
description: | description: |
Please copy and paste (or attach) any relevant logs, error messages or any other output. This will be automatically formatted into code, so no need for backticks. Screenshots are accepted if they make life easier for you. The log files (located as specified by `/etc/ly/config.lua` or `/etc/ly/config.ini`) usually contain relevant information about the problem: Please copy and paste (or attach) any relevant logs, error messages or any other output. This will be automatically formatted into code, so no need for backticks. Screenshots are accepted if they make life easier for you. The log files (located as specified by `/etc/ly/config.ini`) usually contain relevant information about the problem:
- The session log is located at `~/.local/state/ly-session.log` by default. - The session log is located at `~/.local/state/ly-session.log` by default.
- The system log is located at `/var/log/ly.log` by default. - The system log is located at `/var/log/ly.log` by default.
render: shell render: shell

View File

@@ -28,7 +28,7 @@ comptime {
} }
} }
const ly_version = std.SemanticVersion{ .major = 1, .minor = 6, .patch = 0 }; const ly_version = std.SemanticVersion{ .major = 1, .minor = 5, .patch = 0 };
fn InstallStep( fn InstallStep(
b: *std.Build, b: *std.Build,
@@ -102,6 +102,13 @@ pub fn build(b: *std.Build) !void {
}), }),
}); });
const zlua = b.dependency("zlua", .{
.target = target,
.optimize = optimize,
.lang = .luajit,
});
exe.root_module.addImport("zlua", zlua.module("zlua"));
const ly_ui = b.dependency("ly_ui", .{ const ly_ui = b.dependency("ly_ui", .{
.target = target, .target = target,
.optimize = optimize, .optimize = optimize,
@@ -207,20 +214,6 @@ fn getVersionStr(b: *std.Build, name: []const u8, version: std.SemanticVersion)
} }
return version_str; return version_str;
}, },
1 => {
// Release candidate build (e.g. v1.5.0-rc1)
var it = std.mem.splitScalar(u8, git_describe, '-');
const tagged_ancestor = std.mem.trimStart(u8, it.first(), "v");
const ancestor_ver = try std.SemanticVersion.parse(tagged_ancestor);
if (version.order(ancestor_ver) != .gt) {
std.debug.print("{s} version '{f}' must be greater than tagged ancestor '{f}'\n", .{ name, version, ancestor_ver });
std.process.exit(1);
}
// The version is reformatted in accordance with the https://semver.org specification.
return version_str;
},
2 => { 2 => {
// Untagged development build (e.g. 0.10.0-dev.2025+ecf0050a9). // Untagged development build (e.g. 0.10.0-dev.2025+ecf0050a9).
var it = std.mem.splitScalar(u8, git_describe, '-'); var it = std.mem.splitScalar(u8, git_describe, '-');
@@ -243,29 +236,6 @@ fn getVersionStr(b: *std.Build, name: []const u8, version: std.SemanticVersion)
// The version is reformatted in accordance with the https://semver.org specification. // The version is reformatted in accordance with the https://semver.org specification.
return b.fmt("{s}-dev.{s}+{s}", .{ version_str, commit_height, commit_id[1..] }); return b.fmt("{s}-dev.{s}+{s}", .{ version_str, commit_height, commit_id[1..] });
}, },
3 => {
// Untagged development build (e.g. 0.10.0-dev.2025+ecf0050a9).
var it = std.mem.splitScalar(u8, git_describe, '-');
const tagged_ancestor = std.mem.trimStart(u8, it.first(), "v");
_ = it.next().?;
const commit_height = it.next().?;
const commit_id = it.next().?;
const ancestor_ver = try std.SemanticVersion.parse(tagged_ancestor);
if (version.order(ancestor_ver) != .gt) {
std.debug.print("{s} version '{f}' must be greater than tagged ancestor '{f}'\n", .{ name, version, ancestor_ver });
std.process.exit(1);
}
// Check that the commit hash is prefixed with a 'g' (a Git convention).
if (commit_id.len < 1 or commit_id[0] != 'g') {
std.debug.print("Unexpected `git describe` output: {s}\n", .{git_describe});
return version_str;
}
// The version is reformatted in accordance with the https://semver.org specification.
return b.fmt("{s}-dev.{s}+{s}", .{ version_str, commit_height, commit_id[1..] });
},
else => { else => {
std.debug.print("Unexpected `git describe` output: {s}\n", .{git_describe}); std.debug.print("Unexpected `git describe` output: {s}\n", .{git_describe});
return version_str; return version_str;

View File

@@ -1,6 +1,6 @@
.{ .{
.name = .ly, .name = .ly,
.version = "1.6.0", .version = "1.5.0",
.fingerprint = 0xa148ffcc5dc2cb59, .fingerprint = 0xa148ffcc5dc2cb59,
.minimum_zig_version = "0.16.0", .minimum_zig_version = "0.16.0",
.dependencies = .{ .dependencies = .{
@@ -11,6 +11,10 @@
.url = "git+https://github.com/Hejsil/zig-clap#fc1e5cc3f6d9d3001112385ee6256d694e959d2f", .url = "git+https://github.com/Hejsil/zig-clap#fc1e5cc3f6d9d3001112385ee6256d694e959d2f",
.hash = "clap-0.11.0-oBajB7foAQC3Iyn4IVCkUdYaOVVng5IZkSncySTjNig1", .hash = "clap-0.11.0-oBajB7foAQC3Iyn4IVCkUdYaOVVng5IZkSncySTjNig1",
}, },
.zlua = .{
.url = "git+https://github.com/natecraddock/ziglua?ref=zig-0.16#8f271c82baa5fc43aa02a72f6da020c2025d9436",
.hash = "zlua-0.1.0-hGRpC2aABQD4D9PBVH3wAW8k32-I4969MRQ0CpOwoley",
},
}, },
.paths = .{ .paths = .{
"build.zig", "build.zig",

View File

@@ -126,16 +126,19 @@ fn installLy(allocator: std.mem.Allocator, io: std.Io, patch_map: PatchMap, inst
var config_dir = std.Io.Dir.cwd().openDir(io, ly_config_directory, .{}) catch unreachable; var config_dir = std.Io.Dir.cwd().openDir(io, ly_config_directory, .{}) catch unreachable;
defer config_dir.close(io); defer config_dir.close(io);
const patched_config = try patchFile(allocator, io, "res/config.lua", patch_map); if (install_config) {
const patched_config = try patchFile(allocator, io, "res/config.ini", patch_map);
defer allocator.free(patched_config); defer allocator.free(patched_config);
if (install_config) { try installText(io, patched_config, config_dir, ly_config_directory, "config.ini", .{});
try installText(io, patched_config, config_dir, ly_config_directory, "config.lua", .{});
try installFile(io, "res/startup.sh", config_dir, ly_config_directory, "startup.sh", .{ .permissions = .fromMode(0o755) }); try installFile(io, "res/startup.sh", config_dir, ly_config_directory, "startup.sh", .{ .permissions = .fromMode(0o755) });
} }
try installText(io, patched_config, config_dir, ly_config_directory, "config.lua.example", .{}); const patched_example_config = try patchFile(allocator, io, "res/config.ini", patch_map);
defer allocator.free(patched_example_config);
try installText(io, patched_example_config, config_dir, ly_config_directory, "config.ini.example", .{});
const patched_setup = try patchFile(allocator, io, "res/setup.sh", patch_map); const patched_setup = try patchFile(allocator, io, "res/setup.sh", patch_map);
defer allocator.free(patched_setup); defer allocator.free(patched_setup);

View File

@@ -21,13 +21,6 @@ pub fn build(b: *std.Build) void {
const zigini = b.dependency("zigini", .{ .target = target, .optimize = optimize }); const zigini = b.dependency("zigini", .{ .target = target, .optimize = optimize });
mod.addImport("zigini", zigini.module("zigini")); mod.addImport("zigini", zigini.module("zigini"));
const zlua = b.dependency("zlua", .{
.target = target,
.optimize = optimize,
.lang = .luajit,
});
mod.addImport("zlua", zlua.module("zlua"));
const translate_c = b.dependency("translate_c", .{ const translate_c = b.dependency("translate_c", .{
.target = target, .target = target,
}); });

View File

@@ -1,6 +1,6 @@
.{ .{
.name = .ly_core, .name = .ly_core,
.version = "1.2.0", .version = "1.1.0",
.fingerprint = 0xddda7afda795472, .fingerprint = 0xddda7afda795472,
.minimum_zig_version = "0.16.0", .minimum_zig_version = "0.16.0",
.dependencies = .{ .dependencies = .{
@@ -12,10 +12,6 @@
.url = "git+https://codeberg.org/ziglang/translate-c?ref=zig-0.16.x#6fe0ffc4549f15c5f2d9432c2b4460ba90ff85ac", .url = "git+https://codeberg.org/ziglang/translate-c?ref=zig-0.16.x#6fe0ffc4549f15c5f2d9432c2b4460ba90ff85ac",
.hash = "translate_c-1.0.0-Q_BUWo_5BgD4flHdUhA31zOz0XvZk9k7lQv1ouzyNXj2", .hash = "translate_c-1.0.0-Q_BUWo_5BgD4flHdUhA31zOz0XvZk9k7lQv1ouzyNXj2",
}, },
.zlua = .{
.url = "git+https://github.com/natecraddock/ziglua?ref=zig-0.16#8f271c82baa5fc43aa02a72f6da020c2025d9436",
.hash = "zlua-0.1.0-hGRpC2aABQD4D9PBVH3wAW8k32-I4969MRQ0CpOwoley",
},
}, },
.paths = .{ .paths = .{
"build.zig", "build.zig",

View File

@@ -246,29 +246,8 @@ fn PlatformStruct() type {
if (result != 0) return error.SetUserUidFailed; if (result != 0) return error.SetUserUidFailed;
} }
// FreeBSD implementation using sysctlbyname
// https://man.freebsd.org/cgi/man.cgi?sysctlbyname
pub fn getActiveTtyImpl(_: std.mem.Allocator, _: std.Io, _: bool) !u8 { pub fn getActiveTtyImpl(_: std.mem.Allocator, _: std.Io, _: bool) !u8 {
const tty_fd = std.posix.system.open("/dev/tty", .{}); return error.FeatureUnimplemented;
if (tty_fd < 0) return error.NoTtyFound;
defer _ = std.posix.system.close(tty_fd);
var tty_stat: std.posix.Stat = undefined;
if (std.posix.system.fstat(tty_fd, &tty_stat) < 0) return error.FstatTty;
var buf: ["ttyvx".len:0]u8 = undefined;
var len: usize = buf.len + 1;
if (std.posix.system.sysctlbyname("kern.devname", buf[0..].ptr, &len, &tty_stat.rdev, @sizeOf(u64)) < 0)
return error.SysctlTty;
const dev_name = buf[0 .. len - 1];
if (std.mem.startsWith(u8, dev_name, "ttyv")) {
return try std.fmt.parseInt(u8, dev_name[dev_name.len - 1 ..], 16) + 1;
}
return error.NoTtyFound;
} }
pub fn getUserIdRange(_: std.mem.Allocator, _: std.Io, _: []const u8) !UidRange { pub fn getUserIdRange(_: std.mem.Allocator, _: std.Io, _: []const u8) !UidRange {
@@ -421,11 +400,8 @@ pub fn getNextUsernameEntry() ?UsernameEntry {
}; };
} }
pub fn getUsernameEntry(allocator: std.mem.Allocator, username: []const u8) ?UsernameEntry { pub fn getUsernameEntry(username: [:0]const u8) ?UsernameEntry {
const username_z = allocator.dupeZ(u8, username) catch return null; const entry = pwd.getpwnam(username);
defer allocator.free(username_z);
const entry = pwd.getpwnam(username_z);
if (entry == null) return null; if (entry == null) return null;
return .{ return .{

View File

@@ -1,44 +1,16 @@
const std = @import("std"); const std = @import("std");
pub const ini = @import("zigini"); pub const ini = @import("zigini");
pub const zlua = @import("zlua");
pub const Lua = zlua.Lua;
pub const interop = @import("interop.zig"); pub const interop = @import("interop.zig");
pub const UidRange = @import("UidRange.zig"); pub const UidRange = @import("UidRange.zig");
pub const LogFile = @import("LogFile.zig"); pub const LogFile = @import("LogFile.zig");
pub const SharedError = @import("SharedError.zig"); pub const SharedError = @import("SharedError.zig");
pub const custom = @import("custom.zig");
pub fn Parser(comptime T: type) type { pub fn IniParser(comptime Struct: type) type {
return union(enum) { return struct {
ini: IniParser(T), const Self = @This();
lua: LuaParser(T), const temporary_allocator = std.heap.page_allocator;
pub fn errors(self: *const @This()) std.ArrayList(Error) {
return switch (self.*) {
inline else => |p| p.errors,
};
}
pub fn maybe_load_error(self: *const @This()) ?anyerror {
return switch (self.*) {
inline else => |p| p.maybe_load_error,
};
}
pub fn structure(self: *const @This()) T {
return switch (self.*) {
inline else => |p| p.structure,
};
}
pub fn deinit(self: *@This()) void {
switch (self.*) {
inline else => |*p| p.deinit(),
}
}
};
}
pub const Error = struct { pub const Error = struct {
type_name: []const u8, type_name: []const u8,
@@ -46,12 +18,6 @@ pub const Error = struct {
value: []const u8, value: []const u8,
error_name: []const u8, error_name: []const u8,
}; };
pub fn IniParser(comptime Struct: type) type {
return struct {
const Self = @This();
const temporary_allocator = std.heap.page_allocator;
pub var global_errors: std.ArrayList(Error) = .empty; pub var global_errors: std.ArrayList(Error) = .empty;
ini_struct: ini.Ini(Struct), ini_struct: ini.Ini(Struct),
@@ -110,281 +76,3 @@ pub fn IniParser(comptime Struct: type) type {
} }
}; };
} }
pub fn LuaParser(comptime Struct: type) type {
return struct {
const Self = @This();
const temporary_allocator = std.heap.page_allocator;
pub var global_errors: std.ArrayList(Error) = .empty;
structure: Struct,
errors: std.ArrayList(Error),
maybe_load_error: ?anyerror,
allocator: std.mem.Allocator,
arena: std.heap.ArenaAllocator,
pub fn init(
allocator: std.mem.Allocator,
path: []const u8,
) !Self {
var arena = std.heap.ArenaAllocator.init(allocator);
const arena_alloc = arena.allocator();
var maybe_load_error: ?anyerror = null;
errdefer |err| maybe_load_error = err;
const data = parseLua(arena_alloc, path) catch load_error: {
break :load_error Struct{};
};
if (global_errors.items.len != 0) {
maybe_load_error = error.InvalidConfig;
}
return .{
.structure = data,
.errors = global_errors,
.maybe_load_error = maybe_load_error,
.allocator = allocator,
.arena = arena,
};
}
fn parseLua(
allocator: std.mem.Allocator,
path: []const u8,
) !Struct {
var lua: *Lua = try .init(allocator);
defer lua.deinit();
lua.openBase();
lua.openBit();
lua.openMath();
lua.openString();
lua.openTable();
// convert to sentinel terminated slice
const spath: [:0]const u8 = try allocator.dupeSentinel(u8, path, 0);
defer allocator.free(spath);
lua.doFile(spath) catch return error.LuaError;
var data: Struct = .{};
switch (@typeInfo(Struct)) {
.@"struct" => |struc| {
const ly_type = lua.getGlobal("ly");
defer lua.pop(1); // pop ly table
if (ly_type == .nil) return error.MissingLyTable;
inline for (struc.fields) |field| {
try setField(allocator, lua, field, &data);
}
},
else => @compileError("Expected a struct."),
}
// Parse custom binds and labels
try parseCustom(lua);
return data;
}
pub fn setField(allocator: std.mem.Allocator, lua: *Lua, comptime field: std.builtin.Type.StructField, data: *Struct) !void {
const type_info = @typeInfo(field.type);
const actual_type, const is_optional = blk: {
if (type_info == .optional) {
break :blk .{ type_info.optional.child, true };
}
break :blk .{ field.type, false };
};
// push value to top of stack
_ = lua.getField(-1, field.name);
defer lua.pop(1);
// handle null, i.e. undefined fields
if (is_optional and lua.isNil(-1)) {
@field(data, field.name) = null;
return;
}
// handle missing required fields
if (lua.isNil(-1)) return;
const actual_type_info = @typeInfo(actual_type);
errdefer |err| {
const value = lua.toString(-1) catch "";
const duped = allocator.dupe(u8, value) catch "";
errorHandler(@typeName(field.type), field.name, duped, err);
}
// dispatch depending on type
if (actual_type_info == .int and is_optional) {
if (lua.isNumber(-1)) {
const value = try lua.toNumber(-1);
@field(data, field.name) = @trunc(value);
} else {
const str = try lua.toString(-1);
var view = try std.unicode.Utf8View.init(str);
var iter = view.iterator();
const codepoint = iter.nextCodepoint();
if (iter.nextCodepoint() != null) return error.ExpectedSingleCharacter;
@field(data, field.name) = if (codepoint) |cp| @intCast(cp) else null;
}
// non null integer
} else if (actual_type_info == .int) {
if (lua.isNumber(-1)) {
const value = try lua.toNumber(-1);
@field(data, field.name) = @trunc(value);
} else {
const str = try lua.toString(-1);
var view = try std.unicode.Utf8View.init(str);
var iter = view.iterator();
const codepoint = iter.nextCodepoint() orelse return error.EmptyString;
if (iter.nextCodepoint() != null) return error.ExpectedSingleCharacter;
@field(data, field.name) = @intCast(codepoint);
}
} else if (actual_type_info == .float) { // all floats
const value = try lua.toNumber(-1);
@field(data, field.name) = @floatCast(value);
} else if (actual_type_info == .bool) {
if (!lua.isBoolean(-1)) return error.ExpectedBoolean;
const value = lua.toBoolean(-1);
@field(data, field.name) = value;
} else if (actual_type == []const u8) {
const value = try lua.toString(-1);
const duped = try allocator.dupe(u8, value);
@field(data, field.name) = duped;
} else if (actual_type == [:0]const u8) {
const value = try lua.toString(-1);
const duped = try allocator.dupeSentinel(u8, value, 0);
@field(data, field.name) = duped;
} else if (actual_type_info == .@"enum") {
const value = try lua.toString(-1);
const variant = std.meta.stringToEnum(actual_type, value) orelse return error.InvalidVariant;
@field(data, field.name) = variant;
} else unreachable;
}
pub fn parseCustom(lua: *Lua) !void {
_ = lua.getGlobal("ly");
defer lua.pop(1); // pop ly table
if (!lua.isTable(-1)) return error.MissingLyTable;
_ = lua.getField(-1, "custom_commands");
// custom_commands can be omitted or empty, so we just skip instead of erroring
if (lua.isTable(-1)) binds: {
const len: usize = @intCast(lua.objectLen(-1));
if (len == 0) break :binds;
for (1..len + 1) |i| {
// push i-th table to stack
lua.pushInteger(@intCast(i));
const ith_table_type = lua.getTable(-2);
defer lua.pop(1); // i-th table in custom_commands
if (ith_table_type != .table) continue;
// skip command if binding isn't set or not a string
const binding_type = lua.getField(-1, "binding");
if (binding_type != .string) continue;
const binding = lua.toString(-1) catch continue;
const bindingZ = temporary_allocator.dupe(u8, binding) catch "";
std.debug.print("{s}", .{bindingZ});
lua.pop(1); // binding value
if (!custom.binds.contains(bindingZ)) {
custom.binds.put(temporary_allocator, bindingZ, .{}) catch {};
}
if (custom.binds.getPtr(bindingZ)) |command| {
// binding name
const name_type = lua.getField(-1, "name");
if (name_type != .string) continue;
const binding_name = lua.toString(-1) catch "";
command.name = temporary_allocator.dupe(u8, binding_name) catch "";
lua.pop(1); // name value
// binding command
const cmd_type = lua.getField(-1, "cmd");
if (cmd_type != .string) continue;
const binding_cmd = lua.toString(-1) catch "";
command.cmd = temporary_allocator.dupe(u8, binding_cmd) catch "";
lua.pop(1); // cmd value
}
}
}
lua.pop(1);
_ = lua.getField(-1, "custom_labels");
// custom_labels can be omitted, so we just skip instead of erroring
if (lua.isTable(-1)) labels: {
const len: usize = @intCast(lua.objectLen(-1));
if (len == 0) break :labels;
for (1..len + 1) |i| {
// push i-th table to stack
lua.pushInteger(@intCast(i));
const ith_table_type = lua.getTable(-2);
defer lua.pop(1); // i-th table in custom_labels
if (ith_table_type != .table) continue;
// skip command if binding isn't set or not a string
const label_type = lua.getField(-1, "label");
if (label_type != .string) continue;
const label = lua.toString(-1) catch continue;
const labelZ = temporary_allocator.dupe(u8, label) catch "";
lua.pop(1); // label value
if (!custom.labels.contains(labelZ)) {
custom.labels.put(temporary_allocator, labelZ, .{ .name = labelZ }) catch {};
}
if (custom.labels.getPtr(labelZ)) |label_ptr| {
// label command
const cmd_type = lua.getField(-1, "cmd");
if (cmd_type != .string) continue;
const label_cmd = lua.toString(-1) catch "";
label_ptr.cmd = temporary_allocator.dupe(u8, label_cmd) catch "";
lua.pop(1); // cmd value
// label refresh
const name_type = lua.getField(-1, "refresh");
if (name_type != .number) continue;
const label_refresh: u32 = @intCast(lua.toInteger(-1) catch 0);
label_ptr.refresh = label_refresh;
lua.pop(1); // name value
}
}
}
lua.pop(1);
}
pub fn deinit(self: *Self) void {
self.arena.deinit();
for (0..global_errors.items.len) |i| {
const err = global_errors.items[i];
temporary_allocator.free(err.type_name);
temporary_allocator.free(err.key);
temporary_allocator.free(err.value);
}
global_errors.deinit(temporary_allocator);
}
fn errorHandler(type_name: []const u8, key: []const u8, value: []const u8, err: anyerror) void {
global_errors.append(temporary_allocator, .{
.type_name = temporary_allocator.dupe(u8, type_name) catch return,
.key = temporary_allocator.dupe(u8, key) catch return,
.value = temporary_allocator.dupe(u8, value) catch return,
.error_name = @errorName(err),
}) catch return;
}
};
}

View File

@@ -1,6 +1,6 @@
.{ .{
.name = .ly_ui, .name = .ly_ui,
.version = "1.2.0", .version = "1.1.0",
.fingerprint = 0x8d11bf85a74ec803, .fingerprint = 0x8d11bf85a74ec803,
.minimum_zig_version = "0.16.0", .minimum_zig_version = "0.16.0",
.dependencies = .{ .dependencies = .{

View File

@@ -19,12 +19,6 @@ pub const CHAR_SIZE = CHAR_WIDTH * CHAR_HEIGHT;
pub const X: u32 = if (ly_core.interop.supportsUnicode()) 0x2593 else '#'; pub const X: u32 = if (ly_core.interop.supportsUnicode()) 0x2593 else '#';
pub const O: u32 = 0; pub const O: u32 = 0;
const OUTLINE_DIRS = [_][2]i8{
.{ -1, -1 }, .{ -1, 0 }, .{ -1, 1 },
.{ 0, -1 }, .{ 0, 1 }, .{ 1, -1 },
.{ 1, 0 }, .{ 1, 1 },
};
// zig fmt: off // zig fmt: off
pub const LocaleChars = struct { pub const LocaleChars = struct {
ZERO: [CHAR_SIZE]u21, ZERO: [CHAR_SIZE]u21,
@@ -57,7 +51,6 @@ text: []const u8,
max_width: ?usize, max_width: ?usize,
fg: u32, fg: u32,
bg: u32, bg: u32,
outline_fg: ?u32 = null,
locale: BigLabelLocale, locale: BigLabelLocale,
update_fn: ?*const fn (*BigLabel, *anyopaque) anyerror!void, update_fn: ?*const fn (*BigLabel, *anyopaque) anyerror!void,
calculate_timeout_fn: ?*const fn (*BigLabel, *anyopaque) anyerror!?usize, calculate_timeout_fn: ?*const fn (*BigLabel, *anyopaque) anyerror!?usize,
@@ -70,7 +63,6 @@ pub fn init(
max_width: ?usize, max_width: ?usize,
fg: u32, fg: u32,
bg: u32, bg: u32,
outline_fg: ?u32,
locale: BigLabelLocale, locale: BigLabelLocale,
update_fn: ?*const fn (*BigLabel, *anyopaque) anyerror!void, update_fn: ?*const fn (*BigLabel, *anyopaque) anyerror!void,
calculate_timeout_fn: ?*const fn (*BigLabel, *anyopaque) anyerror!?usize, calculate_timeout_fn: ?*const fn (*BigLabel, *anyopaque) anyerror!?usize,
@@ -83,7 +75,6 @@ pub fn init(
.max_width = max_width, .max_width = max_width,
.fg = fg, .fg = fg,
.bg = bg, .bg = bg,
.outline_fg = outline_fg,
.locale = locale, .locale = locale,
.update_fn = update_fn, .update_fn = update_fn,
.calculate_timeout_fn = calculate_timeout_fn, .calculate_timeout_fn = calculate_timeout_fn,
@@ -161,71 +152,23 @@ pub fn childrenPosition(self: BigLabel) Position {
fn draw(self: *BigLabel) void { fn draw(self: *BigLabel) void {
for (self.text, 0..) |c, i| { for (self.text, 0..) |c, i| {
const x = self.component_pos.x + i * (CHAR_WIDTH + 1); const clock_cell = clockCell(
const y = self.component_pos.y; c,
self.fg,
if (self.outline_fg) |outline_fg| { self.bg,
drawDigitOutline(self, c, x, y, outline_fg); self.locale,
} );
alphaBlit( alphaBlit(
x, self.component_pos.x + i * (CHAR_WIDTH + 1),
y, self.component_pos.y,
self.buffer.width, self.buffer.width,
self.buffer.height, self.buffer.height,
clockCell(c, self.fg, self.bg, self.locale), clock_cell,
); );
} }
} }
fn drawDigitOutline(
self: *BigLabel,
char: u8,
base_x: usize,
base_y: usize,
outline_fg: u32,
) void {
const pattern = toBigNumber(char, self.locale);
const stroke = Cell.init(X, outline_fg, TerminalBuffer.Color.DEFAULT);
for (0..CHAR_HEIGHT) |y| {
for (0..CHAR_WIDTH) |x| {
if (pattern[y * CHAR_WIDTH + x] == O) continue;
for (OUTLINE_DIRS) |dir| {
if (offsetBy(x, dir[0])) |nx| {
if (offsetBy(y, dir[1])) |ny| {
if (nx < CHAR_WIDTH and ny < CHAR_HEIGHT and
pattern[ny * CHAR_WIDTH + nx] != O)
{
continue;
}
}
}
const sx = offsetBy(base_x + x, dir[0]) orelse continue;
const sy = offsetBy(base_y + y, dir[1]) orelse continue;
if (sx >= self.buffer.width or
sy >= self.buffer.height)
{
continue;
}
stroke.put(sx, sy) catch {};
}
}
}
}
fn offsetBy(pos: usize, delta: i8) ?usize {
if (delta < 0) {
const abs: usize = @intCast(-delta);
if (pos < abs) return null;
return pos - abs;
}
return pos + @as(usize, @intCast(delta));
}
fn update(self: *BigLabel, context: *anyopaque) !void { fn update(self: *BigLabel, context: *anyopaque) !void {
if (self.update_fn) |update_fn| { if (self.update_fn) |update_fn| {
return @call( return @call(

View File

@@ -97,7 +97,7 @@ Every environment that works on other login managers also should work on Ly.
- If Xorg sessions don't work then check if your distro compiles Ly with Xorg. - If Xorg sessions don't work then check if your distro compiles Ly with Xorg.
Logs are defined by `/etc/ly/config.lua` or `/etc/ly/config.ini`: Logs are defined by `/etc/ly/config.ini`:
- The session log is located at `~/.local/state/ly-session.log` by default. - The session log is located at `~/.local/state/ly-session.log` by default.
@@ -249,14 +249,12 @@ You can, of course, still select the init system of your choice when using this
## Configuration ## Configuration
You can find all the configuration in `/etc/ly/config.lua`. The file is fully commented, and includes the default values. You can find all the configuration in `/etc/ly/config.ini`. The file is fully commented, and includes the default values.
It uses the Lua language, which means you can make the configuration dynamic. You could, for example, choose a random animation each time Ly starts up.
You may also check the validity of your configuration file (i.e. if there are any errors in it) with the following command: You may also check the validity of your configuration file (i.e. if there are any errors in it) with the following command:
``` ```
$ ly --validate-config /etc/ly/config.lua $ ly --validate-config /etc/ly/config.ini
``` ```
## Controls ## Controls

451
res/config.ini Normal file
View File

@@ -0,0 +1,451 @@
# Ly supports 24-bit true color with styling, which means each color is a 32-bit value.
# The format is 0xSSRRGGBB, where SS is the styling, RR is red, GG is green, and BB is blue.
# Here are the possible styling options:
# TB_BOLD 0x01000000
# TB_UNDERLINE 0x02000000
# TB_REVERSE 0x04000000
# TB_ITALIC 0x08000000
# TB_BLINK 0x10000000
# TB_HI_BLACK 0x20000000
# TB_BRIGHT 0x40000000
# TB_DIM 0x80000000
# Programmatically, you'd apply them using the bitwise OR operator (|), but because Ly's
# configuration doesn't support using it, you have to manually compute the color value.
# Note that, if you want to use the default color value of the terminal, you can use the
# special value 0x00000000. This means that, if you want to use black, you *must* use
# the styling option TB_HI_BLACK (the RGB values are ignored when using this option).
# Allow empty password or not when authenticating
allow_empty_password = true
# The active animation
# none -> Nothing
# doom -> PSX DOOM fire
# matrix -> CMatrix
# colormix -> Color mixing shader
# gameoflife -> John Conway's Game of Life
# dur_file -> .dur file format (https://github.com/cmang/durdraw/tree/master)
# lua -> user-made animation written in LuaJIT
animation = none
# Delay between each animation frame in milliseconds
animation_frame_delay = 5
# Stop the animation after some time
# 0 -> Run forever
# 1..2e12 -> Stop the animation after this many seconds
animation_timeout_sec = 0
# The character used to mask the password
# You can either type it directly as a UTF-8 character (like *), or use a UTF-32
# codepoint (for example 0x2022 for a bullet point)
# If null, the password will be hidden
# Note: you can use a # by escaping it like so: \#
asterisk = *
# The number of failed authentications before a special animation is played... ;)
# If set to 0, the animation will never be played
auth_fails = 10
# Automatic login configuration
# This feature allows Ly to automatically log in a user without password prompt.
# IMPORTANT: Both auto_login_user and auto_login_session must be set for this to work.
# Autologin only happens once at startup - it won't re-trigger after logout.
# PAM service name to use for automatic login
# The default service (ly-autologin) uses pam_permit to allow login without password
# The appropriate platform-specific PAM configuration (ly-autologin) will be used automatically
auto_login_service = ly-autologin
# Session name to launch automatically
# To find available session names, check the .desktop files in:
# - /usr/share/xsessions/ (for X11 sessions)
# - /usr/share/wayland-sessions/ (for Wayland sessions)
# Use the filename without .desktop extension, the Name field inside the file or the value of the DesktopNames field
# Examples: "i3", "sway", "gnome", "plasma", "xfce"
# If null, automatic login is disabled
auto_login_session = null
# Username to automatically log in
# Must be a valid user on the system
# If null, automatic login is disabled
auto_login_user = null
# Identifier for battery whose charge to display at top left
# Primary battery is usually BAT0 or BAT1
# If set to null, battery status won't be shown
# Unused on FreeBSD (a sysctl is used there)
battery_id = null
# Background color id
bg = 0x00000000
# Change the state and language of the big clock
# none -> Disabled (default)
# en -> English
# fa -> Farsi
bigclock = none
# Set bigclock to 12-hour notation.
bigclock_12hr = false
# Set bigclock to show the seconds.
bigclock_seconds = false
# Blank main box background
# Setting to false will make it transparent
blank_box = true
# Border foreground color id
border_fg = 0x00FFFFFF
# Relative horizontal position from the end of the screen
# default: 0.5
box_position_h = 0.5
# Relative vertical position from the bottom of the screen
# default: 0.5
box_position_v = 0.5
# Title to show at the top of the main box
# If set to null, none will be shown
box_title = null
# Brightness decrease command
brightness_down_cmd = $PREFIX_DIRECTORY/bin/brightnessctl -q -n s 10%-
# Brightness decrease key combination
# If null, the keybind is disabled and isn't shown
brightness_down_key = F5
# Brightness increase command
brightness_up_cmd = $PREFIX_DIRECTORY/bin/brightnessctl -q -n s +10%
# Brightness increase key combination
# If null, the keybind is disabled and isn't shown
brightness_up_key = F6
# Erase password input on failure
clear_password = false
# Format string for clock in top right corner (see strftime specification). Example: %c
# If null, the clock won't be shown
clock = null
# CMatrix animation foreground color id
cmatrix_fg = 0x0000FF00
# CMatrix animation character string head color id
cmatrix_head_col = 0x01FFFFFF
# CMatrix animation minimum codepoint. It uses a 16-bit integer
# For Japanese characters for example, you can use 0x3000 here
cmatrix_min_codepoint = 0x21
# CMatrix animation maximum codepoint. It uses a 16-bit integer
# For Japanese characters for example, you can use 0x30FF here
cmatrix_max_codepoint = 0x7B
# Color mixing animation first color id
colormix_col1 = 0x00FF0000
# Color mixing animation second color id
colormix_col2 = 0x000000FF
# Color mixing animation third color id
colormix_col3 = 0x20000000
# Screen corners customization
# Keywords:
# shutdown -> Shutdown key
# restart -> Restart key
# britup -> Brightness up key
# britdown -> Brightness down key
# password -> Toggle password key
# clock -> Clock (format defined by 'clock' option)
# tty -> Active TTY number
# battery -> Battery percentage
# version -> Ly version string
# numlock -> Numlock state
# capslock -> Capslock state
# labels -> All custom info labels (lbl:)
# binds -> All custom keybind hints (cmd:)
# lbl:name -> Specific custom info label
# cmd:key -> Specific custom keybind hint
#
# If using a keyword that groups multiple labels into one (e.g. labels, binds),
# they'll be placed horizontally
#
# Also, the order defines the vertical stack (first item is at the edge)
# If items are separted by commas, they'll be placed horizontally
# It is possible to have both horizontal and vertical items on the same corner
# Bottom left
corner_bottom_left = version
# Bottom right
corner_bottom_right = labels
# Top left
corner_top_left = shutdown,restart,britup,britdown,password battery
# Top right
corner_top_right = clock numlock,capslock
# For custom binds: the horizontal limit in characters for each
# line of custom binds before moving on to the next.
# If null, defaults to the width of the terminal instead.
custom_bind_width = null
# Custom sessions directory
# You can specify multiple directories,
# e.g. $CONFIG_DIRECTORY/ly/custom-sessions:$PREFIX_DIRECTORY/share/custom-sessions
custom_sessions = $CONFIG_DIRECTORY/ly/custom-sessions
# Input box active by default on startup
# Available inputs: info_line, session, login, password
default_input = login
# DOOM animation fire height (1 thru 9)
doom_fire_height = 6
# DOOM animation fire spread (0 thru 4)
doom_fire_spread = 2
# DOOM animation custom top color (low intensity flames)
doom_top_color = 0x009F2707
# DOOM animation custom middle color (medium intensity flames)
doom_middle_color = 0x00C78F17
# DOOM animation custom bottom color (high intensity flames)
doom_bottom_color = 0x00FFFFFF
# Dur file path
dur_file_path = $CONFIG_DIRECTORY/ly/example.dur
# Dur file alignment
# The dur file can be aligned with a direction and centered easily with the flags below
# Available inputs: topleft, topcenter, topright, centerleft, center, centerright, bottomleft, bottomcenter, bottomright
dur_offset_alignment = center
# Dur offset x direction (value is added to the current position determined by alignment, negatives are supported)
dur_x_offset = 0
# Dur offset y direction (value is added to the current position determined by alignment, negatives are supported)
dur_y_offset = 0
# Set margin to the edges of the DM (useful for curved monitors)
edge_margin = 0
# Error background color id
error_bg = 0x00000000
# Error foreground color id
# Default is red and bold
error_fg = 0x01FF0000
# Foreground color id
fg = 0x00FFFFFF
# Render true colors (if supported)
# If false, output will be in eight-color mode
# All eight-color mode color codes:
# TB_DEFAULT 0x0000
# TB_BLACK 0x0001
# TB_RED 0x0002
# TB_GREEN 0x0003
# TB_YELLOW 0x0004
# TB_BLUE 0x0005
# TB_MAGENTA 0x0006
# TB_CYAN 0x0007
# TB_WHITE 0x0008
# If full color is off, the styling options still work. The colors are
# always 32-bit values with the styling in the most significant byte.
# Note: If using the dur_file animation option and the dur file's color range
# is saved as 256 with this option disabled, the file will not be drawn.
full_color = true
# Game of Life entropy interval (0 = disabled, >0 = add entropy every N generations)
# 0 -> Pure Conway's Game of Life (will eventually stabilize)
# 10 -> Add entropy every 10 generations (recommended for continuous activity)
# 50+ -> Less frequent entropy for more natural evolution
gameoflife_entropy_interval = 10
# Game of Life animation foreground color id
gameoflife_fg = 0x0000FF00
# Game of Life frame delay (lower = faster animation, higher = slower)
# 1-3 -> Very fast animation
# 6 -> Default smooth animation speed
# 10+ -> Slower, more contemplative speed
gameoflife_frame_delay = 6
# Game of Life initial cell density (0.0 to 1.0)
# 0.1 -> Sparse, minimal activity
# 0.4 -> Balanced activity (recommended)
# 0.7+ -> Dense, chaotic patterns
gameoflife_initial_density = 0.4
# Remove main box borders
hide_borders = false
# Command executed when no input is detected for a certain time
# If null, no command will be executed
inactivity_cmd = null
# Executes a command after a certain amount of seconds
inactivity_delay = 0
# Initial text to show on the info line
# If set to null, the info line defaults to the hostname
initial_info_text = null
# Input boxes length
input_len = 34
# Active language
# Available languages are found in $CONFIG_DIRECTORY/ly/lang/
lang = en
# Command executed when logging in
# If null, no command will be executed
# Important: the code itself must end with `exec "$@"` in order to launch the session!
# You can also set environment variables in there, they'll persist until logout
login_cmd = null
# Path for login.defs file (used for listing all local users on the system on
# Linux)
login_defs_path = /etc/login.defs
# Command executed when logging out
# If null, no command will be executed
# Important: the session will already be terminated when this command is executed, so
# no need to add `exec "$@"` at the end
logout_cmd = null
# The file pointing to the Lua file to be used when using the Lua animation option
lua_animation_file = $CONFIG_DIRECTORY/ly/example.lua
# General log file path
# If null, syslog will be used instead
ly_log = /var/log/ly.log
# Main box horizontal margin
margin_box_h = 2
# Main box vertical margin
margin_box_v = 1
# Set numlock on/off at startup
numlock = false
# Default path
# If null, ly doesn't set a path
path = /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
# Specifies the key combination used for restart
# If null, the keybind is disabled and isn't shown
restart_key = F2
# Absolute directory for the save file
# If null, current desktop & login won't be saved nor loaded
save_file_dir = $CONFIG_DIRECTORY/ly
# Service name (set to ly to use the provided pam config file)
service_name = ly
# Session log file path
# This will contain stdout and stderr of Wayland sessions
# By default it's saved in the user's home directory
# Important: due to technical limitations, X11, shell sessions as well as
# launching session via KMSCON aren't supported, which means you won't get any
# logs from those sessions.
# If null, no session log will be created
session_log = .local/state/ly-session.log
# Setup command
setup_cmd = $CONFIG_DIRECTORY/ly/setup.sh
# Show the shell session in the session list
# If false, the shell session will be hidden
shell = true
# Specifies the key combination used for showing the password
# If null, the keybind is disabled and isn't shown
show_password_key = F7
# Specifies the key combination used for shutdown
# If null, the keybind is disabled and isn't shown
shutdown_key = F1
# Command executed when starting Ly (before the TTY is taken control of)
# See file at path below for an example of changing the default TTY colors
start_cmd = $CONFIG_DIRECTORY/ly/startup.sh
# Center the session name.
text_in_center = false
# If true, user will need to manually type username instead of selecting from the list
# of discovered users
type_username = false
# Default vi mode
# normal -> normal mode
# insert -> insert mode
vi_default_mode = normal
# Enable vi keybindings
vi_mode = false
# Wayland desktop environments
# You can specify multiple directories,
# e.g. $PREFIX_DIRECTORY/share/wayland-sessions:$PREFIX_DIRECTORY/local/share/wayland-sessions
# If null, Wayland sessions will not be shown
waylandsessions = $PREFIX_DIRECTORY/share/wayland-sessions
# Xorg server command
# Add the -quiet argument to hide startup logs from the server
x_cmd = $PREFIX_DIRECTORY/bin/X
# Xorg virtual terminal number
# Mostly useful for FreeBSD where choosing the current TTY causes issues
# If null, the current TTY will be chosen
x_vt = null
# Xorg xauthority edition tool
xauth_cmd = $PREFIX_DIRECTORY/bin/xauth
# xinitrc
# If null, the xinitrc session will be hidden
xinitrc = ~/.xinitrc
# Xorg desktop environments
# You can specify multiple directories,
# e.g. $PREFIX_DIRECTORY/share/xsessions:$PREFIX_DIRECTORY/local/share/xsessions
# If null, X11 sessions will not be shown
xsessions = $PREFIX_DIRECTORY/share/xsessions
# Custom Commands and Labels:
# The following examples below give an outline for setting up custom commands and labels.
# Unless specified as optional, an option is mandatory.
# Comments preceding with '##' are for documentation.
# Comments preceding with '#' comment out the example INI.
## Declare a command with the F8 binding.
#[cmd:F8]
## The name of the command to show up in Ly.
## Note: "$" in "$brightness_up" fetches the appropriate string from the specified locale file
## and is replaced with the value representing "brightness_up".
## You can see the list of keys in any locale file in $CONFIG_DIRECTORY/ly/lang.
#cmd = touch /tmp/ly.gaming
#name = custom command $brightness_up
## Declare a label with an ID. This ID should be unique across all labels.
#[lbl:kernel]
#cmd = uname -srn
## Optional, defaulting to 0.
## In frames, the time to re-run the command and update the label.
## If 0, only run once and do not refresh afterwards
#refresh = 0

View File

@@ -1,498 +0,0 @@
-- This is an example function you can use on any option supporting colors
-- to use a random color instead.
function getRandomColor()
math.randomseed()
local r = math.random(0, 255)
local g = math.random(0, 255)
local b = math.random(0, 255)
local col = b
col = bit.bor(col, bit.lshift(g, 8))
col = bit.bor(col, bit.lshift(r, 16))
return col
end
ly = {
-- Ly supports 24-bit true color with styling, which means each color is a 32-bit value.
-- The format is 0xSSRRGGBB, where SS is the styling, RR is red, GG is green, and BB is blue.
-- Here are the possible styling options:
-- TB_BOLD 0x01000000
-- TB_UNDERLINE 0x02000000
-- TB_REVERSE 0x04000000
-- TB_ITALIC 0x08000000
-- TB_BLINK 0x10000000
-- TB_HI_BLACK 0x20000000
-- TB_BRIGHT 0x40000000
-- TB_DIM 0x80000000
-- Programmatically, you'd apply them using the bitwise OR operator (|), and
-- in Lua, you can use the bit.bor(x, y) function to compute x | y.
-- Note that, if you want to use the default color value of the terminal, you can use the
-- special value 0x00000000. This means that, if you want to use black, you *must* use
-- the styling option TB_HI_BLACK (the RGB values are ignored when using this option).
-- Allow empty password or not when authenticating
allow_empty_password = true,
-- The active animation
-- none -> Nothing
-- doom -> PSX DOOM fire
-- matrix -> CMatrix
-- colormix -> Color mixing shader
-- gameoflife -> John Conway's Game of Life
-- dur -> .dur file format (https://github.com/cmang/durdraw/tree/master)
-- lua -> user-made animation written in LuaJIT
animation = "none",
-- Delay between each animation frame in milliseconds
animation_frame_delay = 5,
-- Stop the animation after some time
-- 0 -> Run forever
-- 1..2e12 -> Stop the animation after this many seconds
animation_timeout_sec = 0,
-- The character used to mask the password
-- You can either type it directly as a UTF-8 character (like *), or use a UTF-32
-- codepoint (for example 0x2022 for a bullet point)
-- If null, the password will be hidden
-- Note: you can use a # by escaping it like so: \#
asterisk = '*',
-- The number of failed authentications before a special animation is played... ;)
-- If set to 0, the animation will never be played
auth_fails = 10,
-- Automatic login configuration
-- This feature allows Ly to automatically log in a user without password prompt.
-- IMPORTANT: Both auto_login_user and auto_login_session must be set for this to work.
-- Autologin only happens once at startup - it won't re-trigger after logout.
-- PAM service name to use for automatic login
-- The default service (ly-autologin) uses pam_permit to allow login without password
-- The appropriate platform-specific PAM configuration (ly-autologin) will be used automatically
auto_login_service = "ly-autologin",
-- Session name to launch automatically
-- To find available session names, check the .desktop files in:
-- - /usr/share/xsessions/ (for X11 sessions)
-- - /usr/share/wayland-sessions/ (for Wayland sessions)
-- Use the filename without .desktop extension, the Name field inside the file or the value of the DesktopNames field
-- Examples: "i3", "sway", "gnome", "plasma", "xfce"
-- If null, automatic login is disabled
auto_login_session = nil,
-- Username to automatically log in
-- Must be a valid user on the system
-- If null, automatic login is disabled
auto_login_user = nil,
-- Identifier for battery whose charge to display at top left
-- Primary battery is usually BAT0 or BAT1
-- If set to null, battery status won't be shown
-- Unused on FreeBSD (a sysctl is used there)
battery_id = nil,
-- Background color id
bg = 0x00000000,
-- Change the state and language of the big clock
-- none -> Disabled (default)
-- en -> English
-- fa -> Farsi
bigclock = "none",
-- Set bigclock to 12-hour notation.
bigclock_12hr = false,
-- Set bigclock to show the seconds.
bigclock_seconds = false,
-- Blank main box background
-- Setting to false will make it transparent
blank_box = true,
-- Border foreground color id
border_fg = 0x00FFFFFF,
-- Relative horizontal position from the end of the screen
-- default: 0.5
box_position_h = 0.5,
-- Relative vertical position from the bottom of the screen
-- default: 0.5
box_position_v = 0.5,
-- Title to show at the top of the main box
-- If set to null, none will be shown
box_title = nil,
-- Brightness decrease command
brightness_down_cmd = "$PREFIX_DIRECTORY/bin/brightnessctl -q -n s 10%-",
-- Brightness decrease key combination
-- If null, the keybind is disabled and isn't shown
brightness_down_key = "F5",
-- Brightness increase command
brightness_up_cmd = "$PREFIX_DIRECTORY/bin/brightnessctl -q -n s +10%",
-- Brightness increase key combination
-- If null, the keybind is disabled and isn't shown
brightness_up_key = "F6",
-- Erase password input on failure
clear_password = false,
-- Format string for clock in top right corner (see strftime specification). Example: %c
-- If null, the clock won't be shown
clock = nil,
-- CMatrix animation foreground color id
cmatrix_fg = 0x0000FF00,
-- CMatrix animation character string head color id
cmatrix_head_col = 0x01FFFFFF,
-- CMatrix animation minimum codepoint. It uses a 16-bit integer
-- For Japanese characters for example, you can use 0x3000 here
cmatrix_min_codepoint = 0x21,
-- CMatrix animation maximum codepoint. It uses a 16-bit integer
-- For Japanese characters for example, you can use 0x30FF here
cmatrix_max_codepoint = 0x7B,
-- Color mixing animation first color id
colormix_col1 = 0x00FF0000,
-- Color mixing animation second color id
colormix_col2 = 0x000000FF,
-- Color mixing animation third color id
colormix_col3 = 0x20000000,
-- Screen corners customization
-- Keywords:
-- shutdown -> Shutdown key
-- restart -> Restart key
-- britup -> Brightness up key
-- britdown -> Brightness down key
-- password -> Toggle password key
-- clock -> Clock (format defined by 'clock' option)
-- tty -> Active TTY number
-- battery -> Battery percentage
-- version -> Ly version string
-- numlock -> Numlock state
-- capslock -> Capslock state
-- labels -> All custom info labels (lbl:)
-- binds -> All custom keybind hints (cmd:)
-- lbl:name -> Specific custom info label
-- cmd:key -> Specific custom keybind hint
--
-- If using a keyword that groups multiple labels into one (e.g. labels, binds),
-- they'll be placed horizontally
--
-- Also, the order defines the vertical stack (first item is at the edge)
-- If items are separted by commas, they'll be placed horizontally
-- It is possible to have both horizontal and vertical items on the same corner
-- Bottom left
corner_bottom_left = "version",
-- Bottom right
corner_bottom_right = "labels",
-- Top left
corner_top_left = "shutdown,restart,britup,britdown,password battery",
-- Top right
corner_top_right = "clock numlock,capslock",
-- For custom binds: the horizontal limit in characters for each
-- line of custom binds before moving on to the next.
-- If null, defaults to the width of the terminal instead.
custom_bind_width = nil,
-- Custom sessions directory
-- You can specify multiple directories,
-- e.g. $CONFIG_DIRECTORY/ly/custom-sessions:$PREFIX_DIRECTORY/share/custom-sessions
custom_sessions = "$CONFIG_DIRECTORY/ly/custom-sessions",
-- Input box active by default on startup
-- Available inputs: info_line, session, login, password
default_input = "login",
-- DOOM animation fire height (1 thru 9)
doom_fire_height = 6,
-- DOOM animation fire spread (0 thru 4)
doom_fire_spread = 2,
-- DOOM animation custom top color (low intensity flames)
doom_top_color = 0x009F2707,
-- DOOM animation custom middle color (medium intensity flames)
doom_middle_color = 0x00C78F17,
-- DOOM animation custom bottom color (high intensity flames)
doom_bottom_color = 0x00FFFFFF,
-- Dur file path
dur_file_path = "$CONFIG_DIRECTORY/ly/example.dur",
-- Dur file alignment
-- The dur file can be aligned with a direction and centered easily with the flags below
-- Available inputs: topleft, topcenter, topright, centerleft, center, centerright, bottomleft, bottomcenter, bottomright
dur_offset_alignment = "center",
-- Dur offset x direction (value is added to the current position determined by alignment, negatives are supported)
dur_x_offset = 0,
-- Dur offset y direction (value is added to the current position determined by alignment, negatives are supported)
dur_y_offset = 0,
-- Set margin to the edges of the DM (useful for curved monitors)
edge_margin = 0,
-- Error background color id
error_bg = 0x00000000,
-- Error foreground color id
-- Default is red and bold
error_fg = 0x01FF0000,
-- Tally directory for the pam_faillock module (if present)
-- Used for getting if an account is locked or not after too many failed
-- login attempts
-- If directory doesn't exist, lock status won't be checked when
-- authenticating
faillock_tally_dir = "/var/run/faillock",
-- Foreground color id
fg = 0x00FFFFFF,
-- Render true colors (if supported)
-- If false, output will be in eight-color mode
-- All eight-color mode color codes:
-- TB_DEFAULT 0x0000
-- TB_BLACK 0x0001
-- TB_RED 0x0002
-- TB_GREEN 0x0003
-- TB_YELLOW 0x0004
-- TB_BLUE 0x0005
-- TB_MAGENTA 0x0006
-- TB_CYAN 0x0007
-- TB_WHITE 0x0008
-- If full color is off, the styling options still work. The colors are
-- always 32-bit values with the styling in the most significant byte.
-- Note: If using the dur_file animation option and the dur file's color range
-- is saved as 256 with this option disabled, the file will not be drawn.
full_color = true,
-- Game of Life entropy interval (0 = disabled, >0 = add entropy every N generations),
-- 0 -> Pure Conway's Game of Life (will eventually stabilize)
-- 10 -> Add entropy every 10 generations (recommended for continuous activity)
-- 50+ -> Less frequent entropy for more natural evolution
gameoflife_entropy_interval = 10,
-- Game of Life animation foreground color id
gameoflife_fg = 0x0000FF00,
-- Game of Life frame delay (lower = faster animation, higher = slower),
-- 1-3 -> Very fast animation
-- 6 -> Default smooth animation speed
-- 10+ -> Slower, more contemplative speed
gameoflife_frame_delay = 6,
-- Game of Life initial cell density (0.0 to 1.0)
-- 0.1 -> Sparse, minimal activity
-- 0.4 -> Balanced activity (recommended)
-- 0.7+ -> Dense, chaotic patterns
gameoflife_initial_density = 0.4,
-- Sets the multiple amounts of neighbors needed for a cell to be born.
-- Each numerical digit from 0 to 8 inclusive in this string becomes
-- one of the targets required for this cell to be born.
-- Example: a string of "3" makes the cell be born on 3 neighbors
gameoflife_param_birth = "3",
-- Sets the multiple amounts of neighbors needed for a cell to survive.
-- Each numerical digit from 0 to 8 inclusive in this string becomes
-- one of the targets required for this cell to survive.
-- Example: a string of "23" makes the cell survive on 2 or 3 neighbors
gameoflife_param_survival = "23",
-- Sets the TTY on which to always grab focus on.
-- This is useful if you want to have deterministic behavior when starting
-- Ly on multiple TTYs simultaneously.
-- If null, Ly will always try to grab focus on the TTY it is launched on,
-- even if multiple instances are launched.
grab_focus_tty = nil,
-- Remove main box borders
hide_borders = false,
-- Command executed when no input is detected for a certain time
-- If null, no command will be executed
inactivity_cmd = nil,
-- Executes a command after a certain amount of seconds
inactivity_delay = 0,
-- Initial text to show on the info line
-- If set to null, the info line defaults to the hostname
initial_info_text = nil,
-- Input boxes length
input_len = 34,
-- Active language
-- Available languages are found in $CONFIG_DIRECTORY/ly/lang/
lang = "en",
-- Command executed when logging in
-- If null, no command will be executed
-- Important: the code itself must end with `exec "$@"` in order to launch the session!
-- You can also set environment variables in there, they'll persist until logout
login_cmd = nil,
-- Path for login.defs file (used for listing all local users on the system on
-- Linux)
login_defs_path = "/etc/login.defs",
-- Command executed when logging out
-- If null, no command will be executed
-- Important: the session will already be terminated when this command is executed, so
-- no need to add `exec "$@"` at the end
logout_cmd = nil,
-- The file pointing to the Lua file to be used when using the Lua animation option
lua_animation_file = "$CONFIG_DIRECTORY/ly/example.lua",
-- General log file path
-- If null, syslog will be used instead
ly_log = "/var/log/ly.log",
-- Main box horizontal margin
margin_box_h = 2,
-- Main box vertical margin
margin_box_v = 1,
-- Set numlock on/off at startup
numlock = false,
-- Default path
-- If null, ly doesn't set a path
path = "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
-- Specifies the key combination used for restart
-- If null, the keybind is disabled and isn't shown
restart_key = "F2",
-- Absolute directory for the save file
-- If null, current desktop & login won't be saved nor loaded
save_file_dir = "$CONFIG_DIRECTORY/ly",
-- Service name (set to ly to use the provided pam config file)
service_name = "ly",
-- Session log file path
-- This will contain stdout and stderr of Wayland sessions
-- By default it's saved in the user's home directory
-- Important: due to technical limitations, X11, shell sessions as well as
-- launching session via KMSCON aren't supported, which means you won't get any
-- logs from those sessions.
-- If null, no session log will be created
session_log = ".local/state/ly-session.log",
-- Setup command
setup_cmd = "$CONFIG_DIRECTORY/ly/setup.sh",
-- Show the shell session in the session list
-- If false, the shell session will be hidden
shell = true,
-- Specifies the key combination used for showing the password
-- If null, the keybind is disabled and isn't shown
show_password_key = "F7",
-- Specifies the key combination used for shutdown
-- If null, the keybind is disabled and isn't shown
shutdown_key = "F1",
-- Command executed when starting Ly (before the TTY is taken control of)
-- See file at path below for an example of changing the default TTY colors
start_cmd = "$CONFIG_DIRECTORY/ly/startup.sh",
-- Center the session name.
text_in_center = false,
-- If true, user will need to manually type username instead of selecting from the list
-- of discovered users
type_username = false,
-- Default vi mode
-- normal -> normal mode
-- insert -> insert mode
vi_default_mode = "normal",
-- Enable vi keybindings
vi_mode = false,
-- Wayland desktop environments
-- You can specify multiple directories,
-- e.g. $PREFIX_DIRECTORY/share/wayland-sessions:$PREFIX_DIRECTORY/local/share/wayland-sessions
-- If null, Wayland sessions will not be shown
waylandsessions = "$PREFIX_DIRECTORY/share/wayland-sessions",
-- Xorg server command
-- Add the -quiet argument to hide startup logs from the server
x_cmd = "$PREFIX_DIRECTORY/bin/X",
-- Xorg virtual terminal number
-- Mostly useful for FreeBSD where choosing the current TTY causes issues
-- If null, the current TTY will be chosen
x_vt = nil,
-- Xorg xauthority edition tool
xauth_cmd = "$PREFIX_DIRECTORY/bin/xauth",
-- xinitrc
-- If null, the xinitrc session will be hidden
xinitrc = "~/.xinitrc",
-- Xorg desktop environments
-- You can specify multiple directories,
-- e.g. $PREFIX_DIRECTORY/share/xsessions:$PREFIX_DIRECTORY/local/share/xsessions
-- If null, X11 sessions will not be shown
xsessions = "$PREFIX_DIRECTORY/share/xsessions",
-- Custom Commands and Labels:
-- The following examples below give an outline for setting up custom commands and labels.
-- Unless specified as optional, an option is mandatory.
-- Comments preceding with '-- --' are for documentation.
-- Comments preceding with '--' comment out the example code.
-- custom_commands = {
-- -- Declare a command with the F8 binding.
-- binding = "F8",
-- -- The name of the command to show up in Ly.
-- -- Note: "$" in "$brightness_up" fetches the appropriate string from the specified locale file
-- -- and is replaced with the value representing "brightness_up".
-- -- You can see the list of keys in any locale file in $CONFIG_DIRECTORY/ly/lang.name = "custom command $brightness_up",
-- cmd = "touch /tmp/ly.gaming",
-- },
-- custom_labels = {
-- -- Declare a label with an ID. This ID should be unique across all labels.
-- label = "kernel",
-- cmd = "uname -srn",
-- -- Optional, defaulting to 0.
-- -- In frames, the time to re-run the command and update the label.
-- -- If 0, only run once and do not refresh afterwards
-- refresh = 0,
-- }
}

View File

@@ -18,7 +18,7 @@
-- --
-- For arguments fg and bg: they are colors in the format -- For arguments fg and bg: they are colors in the format
-- 0xSSRRGGBB, where SS is for styling. See your -- 0xSSRRGGBB, where SS is for styling. See your
-- config.ini or config.lua for more details. -- config.ini for more details.
-- --
-- For the byte argument, you may use string.byte to fill this argument. -- For the byte argument, you may use string.byte to fill this argument.
-- --

View File

@@ -6,7 +6,6 @@ custom = مخصص
custom_info_err_output_long = الإخراج طويل جداً custom_info_err_output_long = الإخراج طويل جداً
custom_info_err_no_output = لا يوجد إخراج custom_info_err_no_output = لا يوجد إخراج
custom_info_err_no_output_error = ، خطأ محتمل custom_info_err_no_output_error = ، خطأ محتمل
err_alloc = فشل في تخصيص الذاكرة err_alloc = فشل في تخصيص الذاكرة
err_args = تعذر تحليل وسيطات سطر الأوامر err_args = تعذر تحليل وسيطات سطر الأوامر
err_autologin_session = لم يتم العثور على جلسة تسجيل الدخول التلقائي err_autologin_session = لم يتم العثور على جلسة تسجيل الدخول التلقائي
@@ -34,6 +33,7 @@ err_pam_abort = تم إلغاء معاملة PAM
err_pam_acct_expired = الحساب منتهي الصلاحية err_pam_acct_expired = الحساب منتهي الصلاحية
err_pam_auth = خطأ في المصادقة (Authentication error) err_pam_auth = خطأ في المصادقة (Authentication error)
err_pam_authinfo_unavail = فشل في الحصول على معلومات المستخدم err_pam_authinfo_unavail = فشل في الحصول على معلومات المستخدم
err_pam_authok_reqd = انتهت صلاحية رمز المصادقة (Token)
err_pam_buf = خطأ في ذاكرة التخزين المؤقت (Buffer) err_pam_buf = خطأ في ذاكرة التخزين المؤقت (Buffer)
err_pam_cred_err = فشل في تعيين بيانات الاعتماد (Credentials) err_pam_cred_err = فشل في تعيين بيانات الاعتماد (Credentials)
err_pam_cred_expired = بيانات الاعتماد منتهية الصلاحية err_pam_cred_expired = بيانات الاعتماد منتهية الصلاحية
@@ -77,7 +77,6 @@ shell = shell
shutdown = ايقاف التشغيل shutdown = ايقاف التشغيل
sleep = وضع السكون sleep = وضع السكون
toggle_password = إظهار/إخفاء كلمة المرور toggle_password = إظهار/إخفاء كلمة المرور
wayland = wayland wayland = wayland
x11 = x11 x11 = x11
xinitrc = xinitrc xinitrc = xinitrc

View File

@@ -6,7 +6,6 @@ custom = персонализирано
custom_info_err_output_long = резултатът е твърде дълъг custom_info_err_output_long = резултатът е твърде дълъг
custom_info_err_no_output = няма резултат custom_info_err_no_output = няма резултат
custom_info_err_no_output_error = , възможна грешка custom_info_err_no_output_error = , възможна грешка
err_acc_locked = профилът е заключен, твърде много неуспешни опити
err_alloc = неуспешно заделяне на памет err_alloc = неуспешно заделяне на памет
err_args = неуспешен анализ на аргументите от командния ред err_args = неуспешен анализ на аргументите от командния ред
err_autologin_session = сесията за автоматично влизане не е намерена err_autologin_session = сесията за автоматично влизане не е намерена
@@ -34,6 +33,7 @@ err_pam_abort = прекратена транзакция
err_pam_acct_expired = изтекъл профил err_pam_acct_expired = изтекъл профил
err_pam_auth = грешка при удостоверяването err_pam_auth = грешка при удостоверяването
err_pam_authinfo_unavail = неуспешно получаване на информация за потребителя err_pam_authinfo_unavail = неуспешно получаване на информация за потребителя
err_pam_authok_reqd = изтекъл жетон
err_pam_buf = грешка в буфера на паметта err_pam_buf = грешка в буфера на паметта
err_pam_cred_err = неуспешно задаване на удостоверения err_pam_cred_err = неуспешно задаване на удостоверения
err_pam_cred_expired = изтекли удостоверения err_pam_cred_expired = изтекли удостоверения
@@ -77,7 +77,6 @@ shell = обвивка
shutdown = изключване shutdown = изключване
sleep = заспиване sleep = заспиване
toggle_password = превключване на паролата toggle_password = превключване на паролата
token_expired = паролата е изтекла, моля, нулирайте паролата си
wayland = wayland wayland = wayland
x11 = x11 x11 = x11
xinitrc = xinitrc xinitrc = xinitrc

View File

@@ -6,7 +6,6 @@ custom = personalitzat
custom_info_err_output_long = sortida massa llarga custom_info_err_output_long = sortida massa llarga
custom_info_err_no_output = sense sortida custom_info_err_no_output = sense sortida
custom_info_err_no_output_error = , possible error custom_info_err_no_output_error = , possible error
err_alloc = assignació de memòria fallida err_alloc = assignació de memòria fallida
err_args = no s'han pogut analitzar els arguments de la línia d'ordres err_args = no s'han pogut analitzar els arguments de la línia d'ordres
err_autologin_session = no s'ha trobat la sessió d'inici de sessió automàtic err_autologin_session = no s'ha trobat la sessió d'inici de sessió automàtic
@@ -34,6 +33,7 @@ err_pam_abort = transacció pam avortada
err_pam_acct_expired = compte expirat err_pam_acct_expired = compte expirat
err_pam_auth = error d'autenticació err_pam_auth = error d'autenticació
err_pam_authinfo_unavail = error en obtenir la informació de l'usuari err_pam_authinfo_unavail = error en obtenir la informació de l'usuari
err_pam_authok_reqd = token expirat
err_pam_buf = error en la memòria intermèdia err_pam_buf = error en la memòria intermèdia
err_pam_cred_err = error en establir les credencials err_pam_cred_err = error en establir les credencials
err_pam_cred_expired = credencials expirades err_pam_cred_expired = credencials expirades
@@ -77,7 +77,6 @@ shell = shell
shutdown = aturar shutdown = aturar
sleep = suspendre sleep = suspendre
toggle_password = mostrar/amagar contrasenya toggle_password = mostrar/amagar contrasenya
wayland = wayland wayland = wayland
x11 = x11 x11 = x11
xinitrc = xinitrc xinitrc = xinitrc

View File

@@ -6,7 +6,6 @@ custom = vlastní
custom_info_err_output_long = výstup je příliš dlouhý custom_info_err_output_long = výstup je příliš dlouhý
custom_info_err_no_output = žádný výstup custom_info_err_no_output = žádný výstup
custom_info_err_no_output_error = , možná chyba custom_info_err_no_output_error = , možná chyba
err_alloc = alokace paměti selhala err_alloc = alokace paměti selhala
err_args = nelze analyzovat argumenty příkazového řádku err_args = nelze analyzovat argumenty příkazového řádku
err_autologin_session = relace automatického přihlášení nebyla nalezena err_autologin_session = relace automatického přihlášení nebyla nalezena
@@ -34,6 +33,7 @@ err_pam_abort = pam transakce přerušena
err_pam_acct_expired = platnost účtu vypršela err_pam_acct_expired = platnost účtu vypršela
err_pam_auth = chyba autentizace err_pam_auth = chyba autentizace
err_pam_authinfo_unavail = nelze získat informace o uživateli err_pam_authinfo_unavail = nelze získat informace o uživateli
err_pam_authok_reqd = platnost tokenu vypršela
err_pam_buf = chyba vyrovnávací paměti err_pam_buf = chyba vyrovnávací paměti
err_pam_cred_err = nelze nastavit pověření err_pam_cred_err = nelze nastavit pověření
err_pam_cred_expired = platnost pověření vypršela err_pam_cred_expired = platnost pověření vypršela
@@ -77,7 +77,6 @@ shell = příkazový řádek
shutdown = vypnout shutdown = vypnout
sleep = uspat sleep = uspat
toggle_password = zobrazit/skrýt heslo toggle_password = zobrazit/skrýt heslo
wayland = wayland wayland = wayland
x11 = x11 x11 = x11
xinitrc = xinitrc xinitrc = xinitrc

View File

@@ -6,7 +6,6 @@ custom = benutzerdefiniert
custom_info_err_output_long = Ausgabe zu lang custom_info_err_output_long = Ausgabe zu lang
custom_info_err_no_output = keine Ausgabe custom_info_err_no_output = keine Ausgabe
custom_info_err_no_output_error = , möglicher Fehler custom_info_err_no_output_error = , möglicher Fehler
err_alloc = Speicherzuweisung fehlgeschlagen err_alloc = Speicherzuweisung fehlgeschlagen
err_args = Kommandozeilenargumente konnten nicht verarbeitet werden err_args = Kommandozeilenargumente konnten nicht verarbeitet werden
err_autologin_session = Autologin-Sitzung nicht gefunden err_autologin_session = Autologin-Sitzung nicht gefunden
@@ -34,6 +33,7 @@ err_pam_abort = PAM-Transaktion abgebrochen
err_pam_acct_expired = Benutzerkonto abgelaufen err_pam_acct_expired = Benutzerkonto abgelaufen
err_pam_auth = Authentifizierungsfehler err_pam_auth = Authentifizierungsfehler
err_pam_authinfo_unavail = Abrufen der Benutzerinformationen fehlgeschlagen err_pam_authinfo_unavail = Abrufen der Benutzerinformationen fehlgeschlagen
err_pam_authok_reqd = Passwort abgelaufen
err_pam_buf = Speicherpufferfehler err_pam_buf = Speicherpufferfehler
err_pam_cred_err = Fehler beim Setzen der Anmeldedaten err_pam_cred_err = Fehler beim Setzen der Anmeldedaten
err_pam_cred_expired = Anmeldedaten abgelaufen err_pam_cred_expired = Anmeldedaten abgelaufen
@@ -77,7 +77,6 @@ shell = Shell
shutdown = Herunterfahren shutdown = Herunterfahren
sleep = Sleep sleep = Sleep
toggle_password = Passwort anzeigen/verbergen toggle_password = Passwort anzeigen/verbergen
wayland = wayland wayland = wayland
x11 = x11 x11 = x11
xinitrc = xinitrc xinitrc = xinitrc

View File

@@ -6,7 +6,6 @@ custom = custom
custom_info_err_output_long = output too long custom_info_err_output_long = output too long
custom_info_err_no_output = no output custom_info_err_no_output = no output
custom_info_err_no_output_error = , possible error custom_info_err_no_output_error = , possible error
err_acc_locked = account locked, too many attempts
err_alloc = failed memory allocation err_alloc = failed memory allocation
err_args = unable to parse command line arguments err_args = unable to parse command line arguments
err_autologin_session = autologin session not found err_autologin_session = autologin session not found
@@ -34,6 +33,7 @@ err_pam_abort = pam transaction aborted
err_pam_acct_expired = account expired err_pam_acct_expired = account expired
err_pam_auth = authentication error err_pam_auth = authentication error
err_pam_authinfo_unavail = failed to get user info err_pam_authinfo_unavail = failed to get user info
err_pam_authok_reqd = token expired
err_pam_buf = memory buffer error err_pam_buf = memory buffer error
err_pam_cred_err = failed to set credentials err_pam_cred_err = failed to set credentials
err_pam_cred_expired = credentials expired err_pam_cred_expired = credentials expired
@@ -77,7 +77,6 @@ shell = shell
shutdown = shutdown shutdown = shutdown
sleep = sleep sleep = sleep
toggle_password = toggle password toggle_password = toggle password
token_expired = password expired, please reset
wayland = wayland wayland = wayland
x11 = x11 x11 = x11
xinitrc = xinitrc xinitrc = xinitrc

View File

@@ -1,16 +1,15 @@
authenticating = aŭtentigante... authenticating = aŭtentigado...
brightness_down = malpliigi helecon brightness_down = malpliigi helecon
brightness_up = pliigi helecon brightness_up = pliigi helecon
capslock = majuskla baskulo capslock = majuskla baskulo
custom = propra custom = propra
custom_info_err_output_long = eligo estas tro longa custom_info_err_output_long = eligo tro longa
custom_info_err_no_output = neniu eligo custom_info_err_no_output = neniu eligo
custom_info_err_no_output_error = , ebla eraro custom_info_err_no_output_error = , ebla eraro
err_acc_locked = konto ŝlosiĝis, tro multaj provoj err_alloc = malsukcesis memorasignon
err_alloc = malsukcesis memorasigno
err_args = ne povas analizi argumentojn de komanda linio err_args = ne povas analizi argumentojn de komanda linio
err_autologin_session = aŭtomata ensaluta seanco ne troviĝis err_autologin_session = aŭtomatan ensalutan seancon ne trovis
err_bounds = indico estas ekster la limoj err_bounds = indico estas ekster-intervala
err_brightness_change = malsukcesis ŝanĝi la helecon err_brightness_change = malsukcesis ŝanĝi la helecon
err_chdir = malsukcesis malfermi hejman dosierujon err_chdir = malsukcesis malfermi hejman dosierujon
err_clock_too_long = horloĝa ĉeno estas tro longa err_clock_too_long = horloĝa ĉeno estas tro longa
@@ -18,32 +17,33 @@ err_config = ne povas analizi agordan dosieron
err_crawl = malsukcesis dum serĉado de seancaj dosierujoj err_crawl = malsukcesis dum serĉado de seancaj dosierujoj
err_dgn_oob = protokola mesaĝo err_dgn_oob = protokola mesaĝo
err_domain = malvalida domajno err_domain = malvalida domajno
err_empty_password = malplena pasvorto malpermesiĝas err_empty_password = ne akceptas malplenan pasvorton
err_envlist = malsukcesis preni la medivariablojn err_envlist = malsukcesis preni la medivariablojn
err_get_active_tty = malsukcesis preni la aktivan TTY err_get_active_tty = malsukcesis preni la aktivan TTY-on
err_hibernate = malsukcesis ruli la komandon por diskodormo err_hibernate = malsukcesis ruli la komandon por diskodormo
err_hostname = malsukcesis preni la sistemnomon err_hostname = malsukcesis preni la sistemnomon
err_inactivity = malsukcesis ruli la komandon de malaktiveco err_inactivity = malsukcesis ruli la agorditan komandon por malaktiveco
err_lock_state = malsukcesis preni la ŝlosan staton err_lock_state = malsukcesis preni la ŝlosan staton
err_log = malsukcesis malfermi la protokolan dosieron err_log = malsukcesis malfermi la protokolan dosieron
err_mlock = malsukcesis ŝlosi pasvortan memoron err_mlock = malsukcesis ŝlosi pasvortan memoron
err_null = nula referenco err_null = nula memorloko
err_numlock = malsukcesis agordi nombran baskulon err_numlock = malsukcesis agordi numeran baskulon
err_pam = PAM transakcio malsukcesis err_pam = PAM-a transakcio malsukcesis
err_pam_abort = PAM transakcio malsukcesis err_pam_abort = PAM-a transakcio malsukcesis
err_pam_acct_expired = konto eksvalidiĝis err_pam_acct_expired = konto eksvalidiĝis
err_pam_auth = aŭtentiga eraro err_pam_auth = aŭtentiga eraro
err_pam_authinfo_unavail = malsukcesis preni uzantajn informojn err_pam_authinfo_unavail = malsukcesis preni uzantajn informojn
err_pam_buf = memorbufra eraro err_pam_authok_reqd = memorsigno eksvalidiĝis
err_pam_cred_err = malsukcesis agordi akreditilojn err_pam_buf = bufra eraro
err_pam_cred_expired = akreditiloj eksvalidiĝis err_pam_cred_err = malsukcesis agordi akreditaĵon
err_pam_cred_insufficient = nesufiĉaj akreditiloj err_pam_cred_expired = akreditaĵo eksvalidiĝis
err_pam_cred_unavail = malsukcesis preni akreditilojn err_pam_cred_insufficient = nesufiĉa akreditaĵo
err_pam_maxtries = atingis limon da provoj err_pam_cred_unavail = malsukcesis preni akreditaĵon
err_pam_maxtries = atingis maksimuman kvanton da provoj
err_pam_perm_denied = permeso negis err_pam_perm_denied = permeso negis
err_pam_session = seanca eraro err_pam_session = seancan eraron
err_pam_sys = sistema eraro err_pam_sys = sisteman eraron
err_pam_user_unknown = nekonita uzanto err_pam_user_unknown = ne konas uzanton
err_path = malsukcesis agordi la median dosierindikon err_path = malsukcesis agordi la median dosierindikon
err_perm_dir = malsukcesis ŝanĝi la nunan dosierujon err_perm_dir = malsukcesis ŝanĝi la nunan dosierujon
err_perm_group = malsukcesis redukti grupajn permesojn err_perm_group = malsukcesis redukti grupajn permesojn
@@ -52,22 +52,22 @@ err_pwnam = malsukcesis preni uzantajn informojn
err_sleep = malsukcesis ruli memordorman komandon err_sleep = malsukcesis ruli memordorman komandon
err_start = malsukcesis ruli startan komandon err_start = malsukcesis ruli startan komandon
err_battery = malsukcesis ŝargi baterian staton err_battery = malsukcesis ŝargi baterian staton
err_switch_tty = malsukcesis ŝanĝi TTY err_switch_tty = malsukcesis ŝanĝi TTY-on
err_tty_ctrl = stira transigo de TTY malsukcesis err_tty_ctrl = TTY-an stiran transigon malsukcesis
err_no_users = neniu uzanto trovas err_no_users = nul uzantojn trovas
err_uid_range = malsukcesis dinamike preni intervalon de UID err_uid_range = malsukcesis dinamike preni UID-an intervalon
err_user_gid = malsukcesis agordi uzantan GID err_user_gid = malsukcesis agordi uzantan GID-on
err_user_init = malsukcesis pravalorizi uzanton err_user_init = malsukcesis iniciĝi uzanto
err_user_uid = malsukcesis agordi uzantan UID err_user_uid = malsukcesis agordi uzantan UID-on
err_xauth = malsukcesis plenumi xauth err_xauth = malsukcesis plenumi je xauth
err_xcb_conn = malsukcesis konekti al xcb err_xcb_conn = malsukcesis dum konectado al xcb
err_xsessions_dir = malsukcesis trovi seancan dosierujon err_xsessions_dir = malsukcesis trovi seancan dosierujon
err_xsessions_open = malsukcesis malfermi seancan dosierujon err_xsessions_open = malsukcesis malfermi seancan dosierujon
hibernate = diskodormi hibernate = diskodormi
insert = enmeti insert = enmeti
login = uzanto login = uzanto
logout = elsalutis logout = elsalutis
no_x11_support = x11 estis forigita dum kompilado no_x11_support = x11 estas foriĝita de kompil-tempo
normal = normala normal = normala
numlock = numera baskulo numlock = numera baskulo
other = alia other = alia
@@ -77,7 +77,6 @@ shell = ŝelo
shutdown = malŝalti shutdown = malŝalti
sleep = memordormi sleep = memordormi
toggle_password = montri/kaŝi pasvorton toggle_password = montri/kaŝi pasvorton
token_expired = pasvorto eksvalidiĝis, bonvolu reagordi ĝin
wayland = wayland wayland = wayland
x11 = x11 x11 = x11
xinitrc = xinitrc xinitrc = xinitrc

View File

@@ -6,7 +6,6 @@ custom = personalizado
custom_info_err_output_long = salida demasiado larga custom_info_err_output_long = salida demasiado larga
custom_info_err_no_output = sin salida custom_info_err_no_output = sin salida
custom_info_err_no_output_error = , posible error custom_info_err_no_output_error = , posible error
err_alloc = asignación de memoria fallida err_alloc = asignación de memoria fallida
err_args = no se pudieron analizar los argumentos de la línea de comandos err_args = no se pudieron analizar los argumentos de la línea de comandos
err_autologin_session = no se encontró la sesión de inicio de sesión automático err_autologin_session = no se encontró la sesión de inicio de sesión automático
@@ -34,6 +33,7 @@ err_pam_abort = transacción pam abortada
err_pam_acct_expired = cuenta expirada err_pam_acct_expired = cuenta expirada
err_pam_auth = error de autenticación err_pam_auth = error de autenticación
err_pam_authinfo_unavail = error al obtener información del usuario err_pam_authinfo_unavail = error al obtener información del usuario
err_pam_authok_reqd = token expirado
err_pam_buf = error de la memoria intermedia err_pam_buf = error de la memoria intermedia
err_pam_cred_err = error al establecer las credenciales err_pam_cred_err = error al establecer las credenciales
err_pam_cred_expired = credenciales expiradas err_pam_cred_expired = credenciales expiradas
@@ -77,7 +77,6 @@ shell = shell
shutdown = apagar shutdown = apagar
sleep = suspender sleep = suspender
toggle_password = mostrar/ocultar contraseña toggle_password = mostrar/ocultar contraseña
wayland = wayland wayland = wayland
x11 = x11 x11 = x11
xinitrc = xinitrc xinitrc = xinitrc

View File

@@ -6,7 +6,6 @@ custom = customisé
custom_info_err_output_long = sortie trop longue custom_info_err_output_long = sortie trop longue
custom_info_err_no_output = pas de sortie custom_info_err_no_output = pas de sortie
custom_info_err_no_output_error = , erreur possible custom_info_err_no_output_error = , erreur possible
err_acc_locked = compte bloqué, trop de tentatives
err_alloc = échec d'allocation mémoire err_alloc = échec d'allocation mémoire
err_args = échec de l'analyse des arguments en lignes de commande err_args = échec de l'analyse des arguments en lignes de commande
err_autologin_session = session de connexion automatique introuvable err_autologin_session = session de connexion automatique introuvable
@@ -34,6 +33,7 @@ err_pam_abort = transaction pam avortée
err_pam_acct_expired = compte expiré err_pam_acct_expired = compte expiré
err_pam_auth = erreur d'authentification err_pam_auth = erreur d'authentification
err_pam_authinfo_unavail = échec de l'obtention des infos utilisateur err_pam_authinfo_unavail = échec de l'obtention des infos utilisateur
err_pam_authok_reqd = tiquet expiré
err_pam_buf = erreur de mémoire tampon err_pam_buf = erreur de mémoire tampon
err_pam_cred_err = échec de la modification des identifiants err_pam_cred_err = échec de la modification des identifiants
err_pam_cred_expired = identifiants expirés err_pam_cred_expired = identifiants expirés
@@ -77,7 +77,6 @@ shell = shell
shutdown = éteindre shutdown = éteindre
sleep = veille sleep = veille
toggle_password = afficher le mot de passe toggle_password = afficher le mot de passe
token_expired = mot de passe expiré, veuillez le changer
wayland = wayland wayland = wayland
x11 = x11 x11 = x11
xinitrc = xinitrc xinitrc = xinitrc

View File

@@ -6,7 +6,6 @@ custom = personalizzato
custom_info_err_output_long = output troppo lungo custom_info_err_output_long = output troppo lungo
custom_info_err_no_output = nessun output custom_info_err_no_output = nessun output
custom_info_err_no_output_error = , possibile errore custom_info_err_no_output_error = , possibile errore
err_alloc = impossibile allocare memoria err_alloc = impossibile allocare memoria
err_args = impossibile analizzare gli argomenti della riga di comando err_args = impossibile analizzare gli argomenti della riga di comando
err_autologin_session = sessione di accesso automatico non trovata err_autologin_session = sessione di accesso automatico non trovata
@@ -34,6 +33,7 @@ err_pam_abort = transazione PAM interrotta
err_pam_acct_expired = account scaduto err_pam_acct_expired = account scaduto
err_pam_auth = errore di autenticazione err_pam_auth = errore di autenticazione
err_pam_authinfo_unavail = impossibile ottenere informazioni utente err_pam_authinfo_unavail = impossibile ottenere informazioni utente
err_pam_authok_reqd = token scaduto
err_pam_buf = errore buffer memoria err_pam_buf = errore buffer memoria
err_pam_cred_err = impossibile impostare credenziali err_pam_cred_err = impossibile impostare credenziali
err_pam_cred_expired = credenziali scadute err_pam_cred_expired = credenziali scadute
@@ -77,7 +77,6 @@ shell = shell
shutdown = arresto shutdown = arresto
sleep = sospendi sleep = sospendi
toggle_password = mostra/nascondi password toggle_password = mostra/nascondi password
wayland = wayland wayland = wayland
x11 = x11 x11 = x11
xinitrc = xinitrc xinitrc = xinitrc

View File

@@ -6,7 +6,6 @@ custom = カスタム
custom_info_err_output_long = 出力が長すぎます custom_info_err_output_long = 出力が長すぎます
custom_info_err_no_output = 出力なし custom_info_err_no_output = 出力なし
custom_info_err_no_output_error = 、エラーの可能性あり custom_info_err_no_output_error = 、エラーの可能性あり
err_alloc = メモリ割り当て失敗 err_alloc = メモリ割り当て失敗
err_args = コマンドライン引数を解析できません err_args = コマンドライン引数を解析できません
err_autologin_session = 自動ログインセッションが見つかりません err_autologin_session = 自動ログインセッションが見つかりません
@@ -34,6 +33,7 @@ err_pam_abort = PAMトランザクションが中断されました
err_pam_acct_expired = アカウントの有効期限が切れています err_pam_acct_expired = アカウントの有効期限が切れています
err_pam_auth = 認証エラー err_pam_auth = 認証エラー
err_pam_authinfo_unavail = ユーザー情報の取得に失敗しました err_pam_authinfo_unavail = ユーザー情報の取得に失敗しました
err_pam_authok_reqd = トークンの有効期限が切れています
err_pam_buf = メモリバッファエラー err_pam_buf = メモリバッファエラー
err_pam_cred_err = 認証情報の設定に失敗しました err_pam_cred_err = 認証情報の設定に失敗しました
err_pam_cred_expired = 認証情報の有効期限が切れています err_pam_cred_expired = 認証情報の有効期限が切れています
@@ -77,7 +77,6 @@ shell = シェル
shutdown = シャットダウン shutdown = シャットダウン
sleep = スリープ sleep = スリープ
toggle_password = パスワードの表示/非表示 toggle_password = パスワードの表示/非表示
wayland = Wayland wayland = Wayland
x11 = x11 x11 = x11
xinitrc = xinitrc xinitrc = xinitrc

View File

@@ -6,7 +6,6 @@ custom = kesane
custom_info_err_output_long = encam pir dirêj e custom_info_err_output_long = encam pir dirêj e
custom_info_err_no_output = encam tune custom_info_err_no_output = encam tune
custom_info_err_no_output_error = , xeletiya mimkun custom_info_err_no_output_error = , xeletiya mimkun
err_alloc = veqetandina bîrê têk çû err_alloc = veqetandina bîrê têk çû
err_args = argumanên rêzika fermanê nehatin analîzkirin err_args = argumanên rêzika fermanê nehatin analîzkirin
err_autologin_session = danişîna têketina xweber nehate dîtin err_autologin_session = danişîna têketina xweber nehate dîtin
@@ -34,6 +33,7 @@ err_pam_abort = danûstendina pam hate têkbirin
err_pam_acct_expired = dema jimarê derbas bûye err_pam_acct_expired = dema jimarê derbas bûye
err_pam_auth = şaşetiya piştrastkirinê err_pam_auth = şaşetiya piştrastkirinê
err_pam_authinfo_unavail = zanyariyên bikarhêner nehatin girtin err_pam_authinfo_unavail = zanyariyên bikarhêner nehatin girtin
err_pam_authok_reqd = dema nîşandanê derbas bûye
err_pam_buf = şaşetiya bîra demkî err_pam_buf = şaşetiya bîra demkî
err_pam_cred_err = sazkirina rastkitinê têk çû err_pam_cred_err = sazkirina rastkitinê têk çû
err_pam_cred_expired = dema rastkitinê derbas bûye err_pam_cred_expired = dema rastkitinê derbas bûye
@@ -77,7 +77,6 @@ shell = shell
shutdown = vemirîne shutdown = vemirîne
sleep = têxîne xewê sleep = têxîne xewê
toggle_password = şîfre nîşan bide/veşêre toggle_password = şîfre nîşan bide/veşêre
wayland = wayland wayland = wayland
x11 = x11 x11 = x11
xinitrc = xinitrc xinitrc = xinitrc

View File

@@ -6,7 +6,6 @@ custom = pielāgots
custom_info_err_output_long = izvade pārāk gara custom_info_err_output_long = izvade pārāk gara
custom_info_err_no_output = nav izvades custom_info_err_no_output = nav izvades
custom_info_err_no_output_error = , iespējama kļūda custom_info_err_no_output_error = , iespējama kļūda
err_alloc = neizdevās atmiņas piešķiršana err_alloc = neizdevās atmiņas piešķiršana
err_args = nevar parsēt komandrindas argumentus err_args = nevar parsēt komandrindas argumentus
err_autologin_session = automātiskās pieteikšanās sesija nav atrasta err_autologin_session = automātiskās pieteikšanās sesija nav atrasta
@@ -34,6 +33,7 @@ err_pam_abort = pam transakcija pārtraukta
err_pam_acct_expired = konts novecojis err_pam_acct_expired = konts novecojis
err_pam_auth = autentifikācijas kļūda err_pam_auth = autentifikācijas kļūda
err_pam_authinfo_unavail = neizdevās iegūt lietotāja informāciju err_pam_authinfo_unavail = neizdevās iegūt lietotāja informāciju
err_pam_authok_reqd = žetons beidzies
err_pam_buf = atmiņas bufera kļūda err_pam_buf = atmiņas bufera kļūda
err_pam_cred_err = neizdevās iestatīt akreditācijas datus err_pam_cred_err = neizdevās iestatīt akreditācijas datus
err_pam_cred_expired = akreditācijas dati novecojuši err_pam_cred_expired = akreditācijas dati novecojuši
@@ -77,7 +77,6 @@ shell = terminālis
shutdown = izslēgt shutdown = izslēgt
sleep = snauda sleep = snauda
toggle_password = rādīt/slēpt paroli toggle_password = rādīt/slēpt paroli
wayland = wayland wayland = wayland
x11 = x11 x11 = x11
xinitrc = xinitrc xinitrc = xinitrc

View File

@@ -6,7 +6,6 @@ custom = własny
custom_info_err_output_long = wyjście zbyt długie custom_info_err_output_long = wyjście zbyt długie
custom_info_err_no_output = brak wyjścia custom_info_err_no_output = brak wyjścia
custom_info_err_no_output_error = , możliwy błąd custom_info_err_no_output_error = , możliwy błąd
err_alloc = nieudana alokacja pamięci err_alloc = nieudana alokacja pamięci
err_args = nie można przetworzyć argumentów wiersza poleceń err_args = nie można przetworzyć argumentów wiersza poleceń
err_autologin_session = nie znaleziono sesji autologowania err_autologin_session = nie znaleziono sesji autologowania
@@ -34,6 +33,7 @@ err_pam_abort = transakcja pam przerwana
err_pam_acct_expired = konto wygasło err_pam_acct_expired = konto wygasło
err_pam_auth = błąd uwierzytelniania err_pam_auth = błąd uwierzytelniania
err_pam_authinfo_unavail = nie udało się zdobyć informacji o użytkowniku err_pam_authinfo_unavail = nie udało się zdobyć informacji o użytkowniku
err_pam_authok_reqd = token wygasł
err_pam_buf = błąd bufora pamięci err_pam_buf = błąd bufora pamięci
err_pam_cred_err = nie udało się ustawić uwierzytelnienia err_pam_cred_err = nie udało się ustawić uwierzytelnienia
err_pam_cred_expired = uwierzytelnienie wygasło err_pam_cred_expired = uwierzytelnienie wygasło
@@ -77,7 +77,6 @@ shell = powłoka
shutdown = wyłącz shutdown = wyłącz
sleep = uśpij sleep = uśpij
toggle_password = Pokaż/ukryj hasło toggle_password = Pokaż/ukryj hasło
wayland = wayland wayland = wayland
x11 = x11 x11 = x11
xinitrc = xinitrc xinitrc = xinitrc

View File

@@ -6,7 +6,6 @@ custom = personalizado
custom_info_err_output_long = saída demasiado longa custom_info_err_output_long = saída demasiado longa
custom_info_err_no_output = sem saída custom_info_err_no_output = sem saída
custom_info_err_no_output_error = , possível erro custom_info_err_no_output_error = , possível erro
err_alloc = erro na atribuição de memória err_alloc = erro na atribuição de memória
err_args = não foi possível analisar os argumentos da linha de comandos err_args = não foi possível analisar os argumentos da linha de comandos
err_autologin_session = sessão de início de sessão automático não encontrada err_autologin_session = sessão de início de sessão automático não encontrada
@@ -34,6 +33,7 @@ err_pam_abort = transação pam abortada
err_pam_acct_expired = conta expirada err_pam_acct_expired = conta expirada
err_pam_auth = erro de autenticação err_pam_auth = erro de autenticação
err_pam_authinfo_unavail = erro ao obter informação do utilizador err_pam_authinfo_unavail = erro ao obter informação do utilizador
err_pam_authok_reqd = token expirado
err_pam_buf = erro de buffer de memória err_pam_buf = erro de buffer de memória
err_pam_cred_err = erro ao definir credenciais err_pam_cred_err = erro ao definir credenciais
err_pam_cred_expired = credenciais expiradas err_pam_cred_expired = credenciais expiradas
@@ -77,7 +77,6 @@ shell = shell
shutdown = encerrar shutdown = encerrar
sleep = suspender sleep = suspender
toggle_password = mostrar/ocultar palavra-passe toggle_password = mostrar/ocultar palavra-passe
wayland = wayland wayland = wayland
x11 = x11 x11 = x11
xinitrc = xinitrc xinitrc = xinitrc

View File

@@ -6,7 +6,6 @@ custom = personalizado
custom_info_err_output_long = saída muito longa custom_info_err_output_long = saída muito longa
custom_info_err_no_output = sem saída custom_info_err_no_output = sem saída
custom_info_err_no_output_error = , possível erro custom_info_err_no_output_error = , possível erro
err_alloc = alocação de memória malsucedida err_alloc = alocação de memória malsucedida
err_args = não foi possível analisar os argumentos da linha de comando err_args = não foi possível analisar os argumentos da linha de comando
err_autologin_session = sessão de login automático não encontrada err_autologin_session = sessão de login automático não encontrada
@@ -34,6 +33,7 @@ err_pam_abort = transação pam abortada
err_pam_acct_expired = conta expirada err_pam_acct_expired = conta expirada
err_pam_auth = erro de autenticação err_pam_auth = erro de autenticação
err_pam_authinfo_unavail = não foi possível obter informações do usuário err_pam_authinfo_unavail = não foi possível obter informações do usuário
err_pam_authok_reqd = token expirado
err_pam_buf = erro de buffer de memória err_pam_buf = erro de buffer de memória
err_pam_cred_err = erro para definir credenciais err_pam_cred_err = erro para definir credenciais
err_pam_cred_expired = credenciais expiradas err_pam_cred_expired = credenciais expiradas
@@ -77,7 +77,6 @@ shell = shell
shutdown = desligar shutdown = desligar
sleep = suspender sleep = suspender
toggle_password = mostrar/ocultar senha toggle_password = mostrar/ocultar senha
wayland = wayland wayland = wayland
x11 = x11 x11 = x11
xinitrc = xinitrc xinitrc = xinitrc

View File

@@ -6,7 +6,6 @@ custom = personalizat
custom_info_err_output_long = ieșire prea lungă custom_info_err_output_long = ieșire prea lungă
custom_info_err_no_output = fără ieșire custom_info_err_no_output = fără ieșire
custom_info_err_no_output_error = , posibil eroare custom_info_err_no_output_error = , posibil eroare
err_alloc = alocare de memorie eșuată err_alloc = alocare de memorie eșuată
err_args = imposibil de analizat argumentele liniei de comandă err_args = imposibil de analizat argumentele liniei de comandă
err_autologin_session = sesiunea de autentificare automată nu a fost găsită err_autologin_session = sesiunea de autentificare automată nu a fost găsită
@@ -34,6 +33,7 @@ err_pam_abort = tranzacţie pam anulată
err_pam_acct_expired = cont expirat err_pam_acct_expired = cont expirat
err_pam_auth = eroare de autentificare err_pam_auth = eroare de autentificare
err_pam_authinfo_unavail = nu s-au putut obţine informaţii despre utilizator err_pam_authinfo_unavail = nu s-au putut obţine informaţii despre utilizator
err_pam_authok_reqd = token expirat
err_pam_buf = eroare de memorie (buffer) err_pam_buf = eroare de memorie (buffer)
err_pam_cred_err = nu s-au putut seta date de identificare (credentials) err_pam_cred_err = nu s-au putut seta date de identificare (credentials)
err_pam_cred_expired = datele de identificare (credentials) au expirat err_pam_cred_expired = datele de identificare (credentials) au expirat
@@ -77,7 +77,6 @@ shell = shell
shutdown = opreşte sistemul shutdown = opreşte sistemul
sleep = repaus sleep = repaus
toggle_password = afișare/ascundere parolă toggle_password = afișare/ascundere parolă
wayland = wayland wayland = wayland
x11 = x11 x11 = x11
xinitrc = xinitrc xinitrc = xinitrc

View File

@@ -6,7 +6,6 @@ custom = пользовательский
custom_info_err_output_long = вывод слишком длинный custom_info_err_output_long = вывод слишком длинный
custom_info_err_no_output = нет вывода custom_info_err_no_output = нет вывода
custom_info_err_no_output_error = , возможная ошибка custom_info_err_no_output_error = , возможная ошибка
err_alloc = не удалось выделить память err_alloc = не удалось выделить память
err_args = не удалось разобрать аргументы командной строки err_args = не удалось разобрать аргументы командной строки
err_autologin_session = не найдена сессия с автологином err_autologin_session = не найдена сессия с автологином
@@ -34,6 +33,7 @@ err_pam_abort = pam транзакция прервана
err_pam_acct_expired = срок действия аккаунта истёк err_pam_acct_expired = срок действия аккаунта истёк
err_pam_auth = ошибка аутентификации err_pam_auth = ошибка аутентификации
err_pam_authinfo_unavail = не удалось получить информацию о пользователе err_pam_authinfo_unavail = не удалось получить информацию о пользователе
err_pam_authok_reqd = токен истёк
err_pam_buf = ошибка буфера памяти err_pam_buf = ошибка буфера памяти
err_pam_cred_err = не удалось установить полномочия err_pam_cred_err = не удалось установить полномочия
err_pam_cred_expired = полномочия истекли err_pam_cred_expired = полномочия истекли
@@ -77,7 +77,6 @@ shell = оболочка
shutdown = выключить shutdown = выключить
sleep = сон sleep = сон
toggle_password = показать/скрыть пароль toggle_password = показать/скрыть пароль
wayland = wayland wayland = wayland
x11 = x11 x11 = x11
xinitrc = xinitrc xinitrc = xinitrc

View File

@@ -6,7 +6,6 @@ custom = prilagođeno
custom_info_err_output_long = izlaz predugačak custom_info_err_output_long = izlaz predugačak
custom_info_err_no_output = nema izlaza custom_info_err_no_output = nema izlaza
custom_info_err_no_output_error = , moguća greška custom_info_err_no_output_error = , moguća greška
err_alloc = neuspješna alokacija memorije err_alloc = neuspješna alokacija memorije
err_args = nije moguće raščlaniti argumente komandne linije err_args = nije moguće raščlaniti argumente komandne linije
err_autologin_session = sesija automatske prijave nije pronađena err_autologin_session = sesija automatske prijave nije pronađena
@@ -34,6 +33,7 @@ err_pam_abort = pam transakcija prekinuta
err_pam_acct_expired = nalog istekao err_pam_acct_expired = nalog istekao
err_pam_auth = greška pri autentikaciji err_pam_auth = greška pri autentikaciji
err_pam_authinfo_unavail = neuspješno uzimanje informacija o korisniku err_pam_authinfo_unavail = neuspješno uzimanje informacija o korisniku
err_pam_authok_reqd = token istekao
err_pam_buf = greška bafera memorije err_pam_buf = greška bafera memorije
err_pam_cred_err = neuspješno postavljanje kredencijala err_pam_cred_err = neuspješno postavljanje kredencijala
err_pam_cred_expired = kredencijali istekli err_pam_cred_expired = kredencijali istekli
@@ -77,7 +77,6 @@ shell = shell
shutdown = ugasi shutdown = ugasi
sleep = uspavaj sleep = uspavaj
toggle_password = prikaži/sakrij lozinku toggle_password = prikaži/sakrij lozinku
wayland = wayland wayland = wayland
x11 = x11 x11 = x11
xinitrc = xinitrc xinitrc = xinitrc

View File

@@ -6,7 +6,6 @@ custom = прилагођено
custom_info_err_output_long = излаз предугачак custom_info_err_output_long = излаз предугачак
custom_info_err_no_output = нема излаза custom_info_err_no_output = нема излаза
custom_info_err_no_output_error = , могућа грешка custom_info_err_no_output_error = , могућа грешка
err_alloc = неуспешна алокација меморије err_alloc = неуспешна алокација меморије
err_args = није могуће рашчланити аргументе командне линије err_args = није могуће рашчланити аргументе командне линије
err_autologin_session = сесија аутоматске пријаве није пронађена err_autologin_session = сесија аутоматске пријаве није пронађена
@@ -34,6 +33,7 @@ err_pam_abort = pam трансакција прекинута
err_pam_acct_expired = налог истекао err_pam_acct_expired = налог истекао
err_pam_auth = грешка при аутентикацији err_pam_auth = грешка при аутентикацији
err_pam_authinfo_unavail = неуспешно узимање информација о кориснику err_pam_authinfo_unavail = неуспешно узимање информација о кориснику
err_pam_authok_reqd = токен истекао
err_pam_buf = грешка бафера меморије err_pam_buf = грешка бафера меморије
err_pam_cred_err = неуспешно постављање акредитива err_pam_cred_err = неуспешно постављање акредитива
err_pam_cred_expired = акредитиви истекли err_pam_cred_expired = акредитиви истекли
@@ -77,7 +77,6 @@ shell = shell
shutdown = угаси shutdown = угаси
sleep = успавај sleep = успавај
toggle_password = прикажи/сакриј лозинку toggle_password = прикажи/сакриј лозинку
wayland = wayland wayland = wayland
x11 = x11 x11 = x11
xinitrc = xinitrc xinitrc = xinitrc

View File

@@ -6,7 +6,6 @@ custom = anpassad
custom_info_err_output_long = utdata för lång custom_info_err_output_long = utdata för lång
custom_info_err_no_output = ingen utdata custom_info_err_no_output = ingen utdata
custom_info_err_no_output_error = , möjligt fel custom_info_err_no_output_error = , möjligt fel
err_alloc = minnesallokering misslyckades err_alloc = minnesallokering misslyckades
err_args = tolkning av kommandoargument misslyckades err_args = tolkning av kommandoargument misslyckades
err_autologin_session = autologin-session hittades inte err_autologin_session = autologin-session hittades inte
@@ -34,6 +33,7 @@ err_pam_abort = pam-transaktion avbröts
err_pam_acct_expired = kontot har löpt ut err_pam_acct_expired = kontot har löpt ut
err_pam_auth = autentisering misslyckades err_pam_auth = autentisering misslyckades
err_pam_authinfo_unavail = hämtning av användarinformation misslyckades err_pam_authinfo_unavail = hämtning av användarinformation misslyckades
err_pam_authok_reqd = token har löpt ut
err_pam_buf = minnesbufferfel err_pam_buf = minnesbufferfel
err_pam_cred_err = inställning av inloggningsuppgifter misslyckades err_pam_cred_err = inställning av inloggningsuppgifter misslyckades
err_pam_cred_expired = inloggningsuppgifterna har löpt ut err_pam_cred_expired = inloggningsuppgifterna har löpt ut
@@ -77,7 +77,6 @@ shell = shell
shutdown = stäng av shutdown = stäng av
sleep = viloläge sleep = viloläge
toggle_password = visa/dölj lösenord toggle_password = visa/dölj lösenord
wayland = wayland wayland = wayland
x11 = x11 x11 = x11
xinitrc = xinitrc xinitrc = xinitrc

View File

@@ -6,7 +6,6 @@ custom = özel
custom_info_err_output_long = çıktı çok uzun custom_info_err_output_long = çıktı çok uzun
custom_info_err_no_output = çıktı yok custom_info_err_no_output = çıktı yok
custom_info_err_no_output_error = , olası hata custom_info_err_no_output_error = , olası hata
err_alloc = basarisiz bellek ayirma err_alloc = basarisiz bellek ayirma
err_args = komut satırı argümanları ayrıştırılamıyor err_args = komut satırı argümanları ayrıştırılamıyor
err_autologin_session = otomatik oturum açma oturumu bulunamadı err_autologin_session = otomatik oturum açma oturumu bulunamadı
@@ -34,6 +33,7 @@ err_pam_abort = pam islemi durduruldu
err_pam_acct_expired = hesabin suresi dolmus err_pam_acct_expired = hesabin suresi dolmus
err_pam_auth = kimlik dogrulama hatasi err_pam_auth = kimlik dogrulama hatasi
err_pam_authinfo_unavail = kullanici bilgileri getirilirken hata olustu err_pam_authinfo_unavail = kullanici bilgileri getirilirken hata olustu
err_pam_authok_reqd = suresi dolmus token
err_pam_buf = bellek arabellegi hatasi err_pam_buf = bellek arabellegi hatasi
err_pam_cred_err = kimlik bilgileri ayarlanamadi err_pam_cred_err = kimlik bilgileri ayarlanamadi
err_pam_cred_expired = kimlik bilgilerinin suresi dolmus err_pam_cred_expired = kimlik bilgilerinin suresi dolmus
@@ -77,7 +77,6 @@ shell = shell
shutdown = makineyi kapat shutdown = makineyi kapat
sleep = uykuya al sleep = uykuya al
toggle_password = parolayı göster/gizle toggle_password = parolayı göster/gizle
wayland = wayland wayland = wayland
x11 = x11 x11 = x11
xinitrc = xinitrc xinitrc = xinitrc

View File

@@ -6,7 +6,6 @@ custom = власний
custom_info_err_output_long = вивід занадто довгий custom_info_err_output_long = вивід занадто довгий
custom_info_err_no_output = немає виводу custom_info_err_no_output = немає виводу
custom_info_err_no_output_error = , можлива помилка custom_info_err_no_output_error = , можлива помилка
err_alloc = невдале виділення пам'яті err_alloc = невдале виділення пам'яті
err_args = не вдалося розібрати аргументи командного рядка err_args = не вдалося розібрати аргументи командного рядка
err_autologin_session = сеанс автоматичного входу не знайдено err_autologin_session = сеанс автоматичного входу не знайдено
@@ -34,6 +33,7 @@ err_pam_abort = pam транзакція перервана
err_pam_acct_expired = термін дії акаунту вичерпано err_pam_acct_expired = термін дії акаунту вичерпано
err_pam_auth = помилка автентифікації err_pam_auth = помилка автентифікації
err_pam_authinfo_unavail = не вдалося отримати дані користувача err_pam_authinfo_unavail = не вдалося отримати дані користувача
err_pam_authok_reqd = термін дії токена вичерпано
err_pam_buf = помилка буферу пам'яті err_pam_buf = помилка буферу пам'яті
err_pam_cred_err = не вдалося змінити облікові дані err_pam_cred_err = не вдалося змінити облікові дані
err_pam_cred_expired = термін дії повноважень вичерпано err_pam_cred_expired = термін дії повноважень вичерпано
@@ -77,7 +77,6 @@ shell = оболонка
shutdown = вимкнути shutdown = вимкнути
sleep = сплячий режим sleep = сплячий режим
toggle_password = показати/приховати пароль toggle_password = показати/приховати пароль
wayland = wayland wayland = wayland
x11 = x11 x11 = x11
xinitrc = xinitrc xinitrc = xinitrc

View File

@@ -6,7 +6,6 @@ custom = 自定义
custom_info_err_output_long = 输出过长 custom_info_err_output_long = 输出过长
custom_info_err_no_output = 无输出 custom_info_err_no_output = 无输出
custom_info_err_no_output_error = ,可能有错误 custom_info_err_no_output_error = ,可能有错误
err_alloc = 内存分配失败 err_alloc = 内存分配失败
err_args = 无法解析命令行参数 err_args = 无法解析命令行参数
err_autologin_session = 未找到自动登录会话 err_autologin_session = 未找到自动登录会话
@@ -34,6 +33,7 @@ err_pam_abort = PAM事务已中止
err_pam_acct_expired = 帐户已过期 err_pam_acct_expired = 帐户已过期
err_pam_auth = 身份验证错误 err_pam_auth = 身份验证错误
err_pam_authinfo_unavail = 获取用户信息失败 err_pam_authinfo_unavail = 获取用户信息失败
err_pam_authok_reqd = 口令已过期
err_pam_buf = 内存缓冲区错误 err_pam_buf = 内存缓冲区错误
err_pam_cred_err = 设置凭据失败 err_pam_cred_err = 设置凭据失败
err_pam_cred_expired = 凭据已过期 err_pam_cred_expired = 凭据已过期
@@ -77,7 +77,6 @@ shell = shell
shutdown = 关机 shutdown = 关机
sleep = 睡眠 sleep = 睡眠
toggle_password = 显示/隐藏密码 toggle_password = 显示/隐藏密码
wayland = wayland wayland = wayland
x11 = x11 x11 = x11
xinitrc = xinitrc xinitrc = xinitrc

View File

@@ -6,7 +6,6 @@ custom = 自訂
custom_info_err_output_long = 輸出過長 custom_info_err_output_long = 輸出過長
custom_info_err_no_output = 無輸出 custom_info_err_no_output = 無輸出
custom_info_err_no_output_error = ,可能有錯誤 custom_info_err_no_output_error = ,可能有錯誤
err_alloc = 記憶體配置失敗 err_alloc = 記憶體配置失敗
err_args = 無法解析命令列參數 err_args = 無法解析命令列參數
err_autologin_session = 找不到自動登入工作階段 err_autologin_session = 找不到自動登入工作階段
@@ -34,6 +33,7 @@ err_pam_abort = PAM 交易已中止
err_pam_acct_expired = 帳號已過期 err_pam_acct_expired = 帳號已過期
err_pam_auth = 驗證錯誤 err_pam_auth = 驗證錯誤
err_pam_authinfo_unavail = 取得使用者資訊失敗 err_pam_authinfo_unavail = 取得使用者資訊失敗
err_pam_authok_reqd = 金鑰已過期
err_pam_buf = 記憶體緩衝區錯誤 err_pam_buf = 記憶體緩衝區錯誤
err_pam_cred_err = 設定憑證失敗 err_pam_cred_err = 設定憑證失敗
err_pam_cred_expired = 憑證已過期 err_pam_cred_expired = 憑證已過期
@@ -77,7 +77,6 @@ shell = shell
shutdown = 關機 shutdown = 關機
sleep = 睡眠 sleep = 睡眠
toggle_password = 顯示/隱藏密碼 toggle_password = 顯示/隱藏密碼
wayland = wayland wayland = wayland
x11 = x11 x11 = x11
xinitrc = xinitrc xinitrc = xinitrc

View File

@@ -70,6 +70,10 @@ if [ "$XDG_SESSION_TYPE" = "x11" ]; then
done done
fi fi
if [ -f "$USERXSESSION" ]; then
. "$USERXSESSION"
fi
if [ -d "$CONFIG_DIRECTORY"/X11/Xresources ]; then if [ -d "$CONFIG_DIRECTORY"/X11/Xresources ]; then
for i in "$CONFIG_DIRECTORY"/X11/Xresources/*; do for i in "$CONFIG_DIRECTORY"/X11/Xresources/*; do
[ -f "$i" ] && xrdb -merge "$i" [ -f "$i" ] && xrdb -merge "$i"
@@ -101,10 +105,6 @@ if [ "$XDG_SESSION_TYPE" = "x11" ]; then
fi fi
done done
fi fi
if [ -f "$USERXSESSION" ]; then
. "$USERXSESSION"
fi
fi fi
exec "$@" exec "$@"

View File

@@ -39,11 +39,6 @@ animation_frame_delay: u16,
dead_cell: Cell, dead_cell: Cell,
width: usize, width: usize,
height: usize, height: usize,
// Where N is the amount of neighbors, determines if the cell can survive/be born
// by checking if the Nth bit (where if N == 0, it is the least significant bit,
// or 2 to the power of 0) is set to 1.
cell_survival: u9,
cell_birth: u9,
pub fn init( pub fn init(
allocator: Allocator, allocator: Allocator,
@@ -55,8 +50,6 @@ pub fn init(
animate: *bool, animate: *bool,
timeout_sec: u12, timeout_sec: u12,
animation_frame_delay: u16, animation_frame_delay: u16,
string_cell_survival: []const u8,
string_cell_birth: []const u8,
) !GameOfLife { ) !GameOfLife {
const width = terminal_buffer.width; const width = terminal_buffer.width;
const height = terminal_buffer.height; const height = terminal_buffer.height;
@@ -84,16 +77,6 @@ pub fn init(
.dead_cell = .{ .ch = DEAD_CHAR, .fg = @intCast(TerminalBuffer.Color.DEFAULT), .bg = terminal_buffer.bg }, .dead_cell = .{ .ch = DEAD_CHAR, .fg = @intCast(TerminalBuffer.Color.DEFAULT), .bg = terminal_buffer.bg },
.width = width, .width = width,
.height = height, .height = height,
.cell_birth = 0,
.cell_survival = 0,
};
for (string_cell_survival) |c| switch (c) {
'0'...'8' => game.cell_survival |= (@as(u9, 1) << @truncate(@as(u9, c - '0'))),
else => {},
};
for (string_cell_birth) |c| switch (c) {
'0'...'8' => game.cell_birth |= (@as(u9, 1) << @truncate(@as(u9, c - '0'))),
else => {},
}; };
// Initialize grid // Initialize grid
@@ -190,10 +173,11 @@ fn updateGeneration(self: *GameOfLife) void {
const is_alive = self.current_grid[index]; const is_alive = self.current_grid[index];
// Optimized rule application // Optimized rule application
self.next_grid[index] = if (is_alive) self.next_grid[index] = switch (neighbors) {
self.cell_survival & (@as(u9, 1) << @truncate(neighbors)) != 0 2 => is_alive,
else 3 => true,
self.cell_birth & (@as(u9, 1) << @truncate(neighbors)) != 0; else => false,
};
} }
} }

View File

@@ -8,7 +8,7 @@ const Allocator = std.mem.Allocator;
const InfoLine = @import("../components/InfoLine.zig"); const InfoLine = @import("../components/InfoLine.zig");
const Lang = @import("../config/Lang.zig"); const Lang = @import("../config/Lang.zig");
const zlua = ly_ui.ly_core.zlua; const zlua = @import("zlua");
const ly_lua = @embedFile("ly.lua"); const ly_lua = @embedFile("ly.lua");

View File

@@ -20,33 +20,12 @@ pub const AuthOptions = struct {
xauth_cmd: []const u8, xauth_cmd: []const u8,
setup_cmd: []const u8, setup_cmd: []const u8,
login_cmd: ?[]const u8, login_cmd: ?[]const u8,
faillock_tally_dir: []const u8,
x_cmd: []const u8, x_cmd: []const u8,
x_vt: ?u8, x_vt: ?u8,
session_pid: std.posix.pid_t, session_pid: std.posix.pid_t,
use_kmscon_vt: bool, use_kmscon_vt: bool,
}; };
const PamAppdata = struct {
username: []const u8,
password: []const u8,
new_authtok_requested: bool,
authreq_responded: bool,
new_password: []const u8,
};
//https://github.com/linux-pam/linux-pam/blob/master/modules/pam_faillock/faillock.h#L55
const PamFaillockEntry = extern struct {
pub const STATUS_VALID: usize = 0x1;
pub const STATUS_RHOST: usize = 0x2;
pub const STATUS_TTY: usize = 0x4;
source: [52]u8,
reserved: u16,
status: u16,
time: u64,
};
var xorg_pid: std.posix.pid_t = 0; var xorg_pid: std.posix.pid_t = 0;
pub fn xorgSignalHandler(sig: std.posix.SIG) callconv(.c) void { pub fn xorgSignalHandler(sig: std.posix.SIG) callconv(.c) void {
if (xorg_pid > 0) _ = std.c.kill(xorg_pid, sig); if (xorg_pid > 0) _ = std.c.kill(xorg_pid, sig);
@@ -57,24 +36,7 @@ pub fn sessionSignalHandler(sig: std.posix.SIG) callconv(.c) void {
if (child_pid > 0) _ = std.c.kill(child_pid, sig); if (child_pid > 0) _ = std.c.kill(child_pid, sig);
} }
pub fn authenticate( pub fn authenticate(allocator: std.mem.Allocator, io: std.Io, log_file: *LogFile, options: AuthOptions, current_environment: Environment, login: []const u8, password: []const u8) !void {
allocator: std.mem.Allocator,
io: std.Io,
log_file: *LogFile,
options: AuthOptions,
current_environment: Environment,
login: []const u8,
password: []const u8,
maybe_new_password: ?[]const u8,
) !void {
const lock_path = try std.fs.path.join(allocator, &.{ options.faillock_tally_dir, login });
defer allocator.free(lock_path);
var faillock_entries: usize = 0;
if (try fileExists(io, lock_path)) {
faillock_entries = try getFaillockEntries(io, lock_path);
}
var tty_buffer: [3]u8 = undefined; var tty_buffer: [3]u8 = undefined;
const tty_str = try std.fmt.bufPrint(&tty_buffer, "{d}", .{options.tty}); const tty_str = try std.fmt.bufPrint(&tty_buffer, "{d}", .{options.tty});
@@ -87,14 +49,13 @@ pub fn authenticate(
// Open the PAM session // Open the PAM session
try log_file.info(io, "auth/pam", "encoding credentials", .{}); try log_file.info(io, "auth/pam", "encoding credentials", .{});
const login_z = try allocator.dupeZ(u8, login);
defer allocator.free(login_z);
var credentials: PamAppdata = .{ const password_z = try allocator.dupeZ(u8, password);
.username = login, defer allocator.free(password_z);
.password = password,
.new_authtok_requested = false, var credentials = [_:null]?[*:0]const u8{ login_z, password_z };
.authreq_responded = false,
.new_password = "",
};
const conv = interop.pam.pam_conv{ const conv = interop.pam.pam_conv{
.conv = loginConv, .conv = loginConv,
@@ -115,24 +76,10 @@ pub fn authenticate(
// Do the PAM routine // Do the PAM routine
try log_file.info(io, "auth/pam", "authenticating", .{}); try log_file.info(io, "auth/pam", "authenticating", .{});
status = interop.pam.pam_authenticate(handle, 0); status = interop.pam.pam_authenticate(handle, 0);
if (status == interop.pam.PAM_AUTH_ERR and try fileExists(io, lock_path)) {
const new_faillock_entries = try getFaillockEntries(io, lock_path);
if (faillock_entries == new_faillock_entries) {
return error.AccountLocked;
}
}
if (status != interop.pam.PAM_SUCCESS) return pamDiagnose(status); if (status != interop.pam.PAM_SUCCESS) return pamDiagnose(status);
try log_file.info(io, "auth/pam", "validating account", .{}); try log_file.info(io, "auth/pam", "validating account", .{});
status = interop.pam.pam_acct_mgmt(handle, 0); status = interop.pam.pam_acct_mgmt(handle, 0);
if (status == interop.pam.PAM_NEW_AUTHTOK_REQD) {
if (maybe_new_password) |new_passwsord| {
credentials.new_authtok_requested = true;
credentials.new_password = new_passwsord;
status = interop.pam.pam_chauthtok(handle, interop.pam.PAM_CHANGE_EXPIRED_AUTHTOK);
}
}
if (status != interop.pam.PAM_SUCCESS) return pamDiagnose(status); if (status != interop.pam.PAM_SUCCESS) return pamDiagnose(status);
try log_file.info(io, "auth/pam", "setting credentials", .{}); try log_file.info(io, "auth/pam", "setting credentials", .{});
@@ -151,7 +98,7 @@ pub fn authenticate(
defer interop.closePasswordDatabase(); defer interop.closePasswordDatabase();
// Get password structure from username // Get password structure from username
user_entry = interop.getUsernameEntry(allocator, login) orelse return error.GetPasswordNameFailed; user_entry = interop.getUsernameEntry(login_z) orelse return error.GetPasswordNameFailed;
} }
// Set user shell if it hasn't already been set // Set user shell if it hasn't already been set
@@ -216,38 +163,6 @@ pub fn authenticate(
if (shared_err.readError()) |err| return err; if (shared_err.readError()) |err| return err;
} }
fn fileExists(io: std.Io, path: []const u8) !bool {
var file = std.Io.Dir.openFileAbsolute(io, path, .{}) catch |err| {
if (err == error.FileNotFound) return false;
return err;
};
defer file.close(io);
return true;
}
fn getFaillockEntries(io: std.Io, path: []const u8) !usize {
var file = try std.Io.Dir.openFileAbsolute(io, path, .{});
defer file.close(io);
var buffer: [1024]u8 = undefined;
var reader = file.reader(io, &buffer);
var count: usize = 0;
while (!reader.atEnd()) {
const entry = reader.interface.takeStruct(PamFaillockEntry, .little) catch |err| {
if (err == error.EndOfStream) break;
return err;
};
if (entry.status & PamFaillockEntry.STATUS_VALID != 0) {
count += 1;
}
}
return count;
}
fn startSession( fn startSession(
log_file: *LogFile, log_file: *LogFile,
allocator: std.mem.Allocator, allocator: std.mem.Allocator,
@@ -361,7 +276,6 @@ fn loginConv(
resp: ?*?[*]interop.pam.pam_response, resp: ?*?[*]interop.pam.pam_response,
appdata_ptr: ?*anyopaque, appdata_ptr: ?*anyopaque,
) callconv(.c) c_int { ) callconv(.c) c_int {
const data: *PamAppdata = @ptrCast(@alignCast(appdata_ptr));
const message_count: u32 = @intCast(num_msg); const message_count: u32 = @intCast(num_msg);
const messages = msg.?; const messages = msg.?;
@@ -375,36 +289,20 @@ fn loginConv(
var username: ?[:0]u8 = null; var username: ?[:0]u8 = null;
var password: ?[:0]u8 = null; var password: ?[:0]u8 = null;
var status: c_int = interop.pam.PAM_SUCCESS; var status: c_int = interop.pam.PAM_SUCCESS;
defer {
if (status != interop.pam.PAM_SUCCESS) {
// Memory is freed by pam otherwise
allocator.free(response);
if (username) |str| allocator.free(str);
if (password) |str| allocator.free(str);
} else {
resp.?.* = response.ptr;
}
}
for (0..message_count) |i| set_credentials: { for (0..message_count) |i| set_credentials: {
switch (messages[i].?.msg_style) { switch (messages[i].?.msg_style) {
interop.pam.PAM_PROMPT_ECHO_ON => { interop.pam.PAM_PROMPT_ECHO_ON => {
username = allocator.dupeZ(u8, data.username) catch { const data: [*][*:0]u8 = @ptrCast(@alignCast(appdata_ptr));
username = allocator.dupeZ(u8, std.mem.span(data[0])) catch {
status = interop.pam.PAM_BUF_ERR; status = interop.pam.PAM_BUF_ERR;
break :set_credentials; break :set_credentials;
}; };
response[i].resp = username.?; response[i].resp = username.?;
}, },
interop.pam.PAM_PROMPT_ECHO_OFF => { interop.pam.PAM_PROMPT_ECHO_OFF => {
var pass = data.password; const data: [*][*:0]u8 = @ptrCast(@alignCast(appdata_ptr));
if (data.new_authtok_requested) { password = allocator.dupeZ(u8, std.mem.span(data[1])) catch {
if (data.authreq_responded) {
pass = data.new_password;
}
data.authreq_responded = true;
}
password = allocator.dupeZ(u8, pass) catch {
status = interop.pam.PAM_BUF_ERR; status = interop.pam.PAM_BUF_ERR;
break :set_credentials; break :set_credentials;
}; };
@@ -418,6 +316,15 @@ fn loginConv(
} }
} }
if (status != interop.pam.PAM_SUCCESS) {
// Memory is freed by pam otherwise
allocator.free(response);
if (username) |str| allocator.free(str);
if (password) |str| allocator.free(str);
} else {
resp.?.* = response.ptr;
}
return status; return status;
} }

View File

@@ -21,7 +21,6 @@ bg: u32 = 0x00000000,
bigclock: Bigclock = .none, bigclock: Bigclock = .none,
bigclock_12hr: bool = false, bigclock_12hr: bool = false,
bigclock_seconds: bool = false, bigclock_seconds: bool = false,
bigclock_outline_fg: ?u32 = null,
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,
@@ -59,16 +58,12 @@ dur_y_offset: i32 = 0,
edge_margin: u8 = 0, edge_margin: u8 = 0,
error_bg: u32 = 0x00000000, error_bg: u32 = 0x00000000,
error_fg: u32 = 0x01FF0000, error_fg: u32 = 0x01FF0000,
faillock_tally_dir: []const u8 = "/var/run/faillock",
fg: u32 = 0x00FFFFFF, fg: u32 = 0x00FFFFFF,
full_color: bool = true, full_color: bool = true,
gameoflife_fg: u32 = 0x0000FF00, gameoflife_fg: u32 = 0x0000FF00,
gameoflife_entropy_interval: usize = 10, gameoflife_entropy_interval: usize = 10,
gameoflife_frame_delay: usize = 6, gameoflife_frame_delay: usize = 6,
gameoflife_initial_density: f32 = 0.4, gameoflife_initial_density: f32 = 0.4,
gameoflife_param_birth: []const u8 = "3",
gameoflife_param_survival: []const u8 = "23",
grab_focus_tty: ?u8 = null,
hide_borders: bool = false, hide_borders: bool = false,
inactivity_cmd: ?[]const u8 = null, inactivity_cmd: ?[]const u8 = null,
inactivity_delay: u16 = 0, inactivity_delay: u16 = 0,

View File

@@ -1,5 +1,5 @@
// //
// NOTE: After editing this file, please run `res/lang/normalize_lang_files.py` // NOTE: After editing this file, please run `/res/lang/normalize_lang_files.py`
// to update all the language files accordingly. // to update all the language files accordingly.
// //
@@ -11,7 +11,6 @@ custom: []const u8 = "custom",
custom_info_err_output_long: []const u8 = "output too long", custom_info_err_output_long: []const u8 = "output too long",
custom_info_err_no_output: []const u8 = "no output", custom_info_err_no_output: []const u8 = "no output",
custom_info_err_no_output_error: []const u8 = ", possible error", custom_info_err_no_output_error: []const u8 = ", possible error",
err_acc_locked: []const u8 = "account locked, too many attempts",
err_alloc: []const u8 = "failed memory allocation", err_alloc: []const u8 = "failed memory allocation",
err_args: []const u8 = "unable to parse command line arguments", err_args: []const u8 = "unable to parse command line arguments",
err_autologin_session: []const u8 = "autologin session not found", err_autologin_session: []const u8 = "autologin session not found",
@@ -39,6 +38,7 @@ err_pam_abort: []const u8 = "pam transaction aborted",
err_pam_acct_expired: []const u8 = "account expired", err_pam_acct_expired: []const u8 = "account expired",
err_pam_auth: []const u8 = "authentication error", err_pam_auth: []const u8 = "authentication error",
err_pam_authinfo_unavail: []const u8 = "failed to get user info", err_pam_authinfo_unavail: []const u8 = "failed to get user info",
err_pam_authok_reqd: []const u8 = "token expired",
err_pam_buf: []const u8 = "memory buffer error", err_pam_buf: []const u8 = "memory buffer error",
err_pam_cred_err: []const u8 = "failed to set credentials", err_pam_cred_err: []const u8 = "failed to set credentials",
err_pam_cred_expired: []const u8 = "credentials expired", err_pam_cred_expired: []const u8 = "credentials expired",
@@ -82,7 +82,6 @@ shell: [:0]const u8 = "shell",
shutdown: []const u8 = "shutdown", shutdown: []const u8 = "shutdown",
sleep: []const u8 = "sleep", sleep: []const u8 = "sleep",
toggle_password: []const u8 = "toggle password", toggle_password: []const u8 = "toggle password",
token_expired: []const u8 = "password expired, please reset",
wayland: []const u8 = "wayland", wayland: []const u8 = "wayland",
x11: []const u8 = "x11", x11: []const u8 = "x11",
xinitrc: [:0]const u8 = "xinitrc", xinitrc: [:0]const u8 = "xinitrc",

View File

@@ -18,7 +18,7 @@ const Config = @import("Config.zig");
const Lang = @import("Lang.zig"); const Lang = @import("Lang.zig");
const OldSave = @import("OldSave.zig"); const OldSave = @import("OldSave.zig");
const SavedUsers = @import("SavedUsers.zig"); const SavedUsers = @import("SavedUsers.zig");
const custom = ly_core.custom; const custom = @import("custom.zig");
const color_properties = [_][]const u8{ const color_properties = [_][]const u8{
"bg", "bg",
@@ -74,10 +74,9 @@ pub fn configFieldHandler(_: std.mem.Allocator, field: ini.IniField) ?ini.IniFie
} }
if (std.mem.eql(u8, field.key, "animation")) { if (std.mem.eql(u8, field.key, "animation")) {
string_conversion: {
// The option now uses a string (which then gets converted into an enum) instead of an integer // The option now uses a string (which then gets converted into an enum) instead of an integer
// It also combines the previous "animate" and "animation" options // It also combines the previous "animate" and "animation" options
const animation = std.fmt.parseInt(u8, field.value, 10) catch break :string_conversion; const animation = std.fmt.parseInt(u8, field.value, 10) catch return field;
var mapped_field = field; var mapped_field = field;
mapped_field.value = switch (animation) { mapped_field.value = switch (animation) {
@@ -89,16 +88,6 @@ pub fn configFieldHandler(_: std.mem.Allocator, field: ini.IniField) ?ini.IniFie
return mapped_field; return mapped_field;
} }
// 'dur_file' was renamed to 'dur'
var mapped_field = field;
if (std.mem.eql(u8, mapped_field.value, "dur_file")) {
mapped_field.value = "dur";
}
return mapped_field;
}
inline for (color_properties, &set_color_properties) |property, *status| { inline for (color_properties, &set_color_properties) |property, *status| {
if (std.mem.eql(u8, field.key, property)) { if (std.mem.eql(u8, field.key, property)) {
// Color has been set; it won't be overwritten if we default to eight-color output // Color has been set; it won't be overwritten if we default to eight-color output
@@ -232,7 +221,9 @@ pub fn configFieldHandler(_: std.mem.Allocator, field: ini.IniField) ?ini.IniFie
// on the progress of said interface, only to find out afterwards // on the progress of said interface, only to find out afterwards
// that you have PROCRASTINATED on the efforts meant to enhance // that you have PROCRASTINATED on the efforts meant to enhance
// configuration. Thus the requirement for this reminder larger // configuration. Thus the requirement for this reminder larger
// compared to the one regarding better methods of X termination. // compared to the two reminders regarding better methods of
// X termination detection and new usernames with existing
// save files.
// //
// Thus is my que to leave this TODO at thy request, // Thus is my que to leave this TODO at thy request,
// //

View File

@@ -6,7 +6,7 @@ pub const Animation = enum {
matrix, matrix,
colormix, colormix,
gameoflife, gameoflife,
dur, dur_file,
lua, lua,
}; };

View File

@@ -19,12 +19,9 @@ const interop = ly_core.interop;
const UidRange = ly_core.UidRange; const UidRange = ly_core.UidRange;
const LogFile = ly_core.LogFile; const LogFile = ly_core.LogFile;
const SharedError = ly_core.SharedError; const SharedError = ly_core.SharedError;
const Parser = ly_core.Parser;
const IniParser = ly_core.IniParser; const IniParser = ly_core.IniParser;
const LuaParser = ly_core.LuaParser;
const ini = ly_core.ini; const ini = ly_core.ini;
const Ini = ini.Ini; const Ini = ini.Ini;
const custom = ly_core.custom;
const Cascade = @import("animations/Cascade.zig"); const Cascade = @import("animations/Cascade.zig");
const ColorMix = @import("animations/ColorMix.zig"); const ColorMix = @import("animations/ColorMix.zig");
@@ -42,6 +39,7 @@ const Lang = @import("config/Lang.zig");
const migrator = @import("config/migrator.zig"); const migrator = @import("config/migrator.zig");
const OldSave = @import("config/OldSave.zig"); const OldSave = @import("config/OldSave.zig");
const SavedUsers = @import("config/SavedUsers.zig"); const SavedUsers = @import("config/SavedUsers.zig");
const custom = @import("config/custom.zig");
const DisplayServer = @import("enums.zig").DisplayServer; const DisplayServer = @import("enums.zig").DisplayServer;
const Environment = @import("Environment.zig"); const Environment = @import("Environment.zig");
const Entry = Environment.Entry; const Entry = Environment.Entry;
@@ -113,7 +111,6 @@ const UiState = struct {
login_text: ?*Text, login_text: ?*Text,
password: *Text, password: *Text,
password_widget: *Widget, password_widget: *Widget,
maybe_old_password: ?[]const u8,
insert_mode: bool, insert_mode: bool,
edge_margin: Position, edge_margin: Position,
config: Config, config: Config,
@@ -129,7 +126,6 @@ const UiState = struct {
bigclock_buf: [32:0]u8, bigclock_buf: [32:0]u8,
custom_binds: std.ArrayList(CustomBindLabel), custom_binds: std.ArrayList(CustomBindLabel),
custom_info: std.ArrayList(CustomInfoLabel), custom_info: std.ArrayList(CustomInfoLabel),
tty_cache: [std.math.maxInt(u8)]?u8,
}; };
var shutdown = false; var shutdown = false;
@@ -138,7 +134,6 @@ var restart = false;
pub fn main(init: std.process.Init) !void { pub fn main(init: std.process.Init) !void {
var state: UiState = undefined; var state: UiState = undefined;
state.tty_cache = @splat(null);
state.io = init.io; state.io = init.io;
var stderr_buffer: [128]u8 = undefined; var stderr_buffer: [128]u8 = undefined;
@@ -196,7 +191,7 @@ pub fn main(init: std.process.Init) !void {
if (res.args.help != 0) { if (res.args.help != 0) {
try clap.help(stderr, clap.Help, &params, .{}); try clap.help(stderr, clap.Help, &params, .{});
std.log.info("note: if you want to configure Ly, please check the config file, which is located at " ++ build_options.config_directory ++ "/ly/config.lua or " ++ build_options.config_directory ++ "/ly/config.ini.", .{}); std.log.info("note: if you want to configure Ly, please check the config file, which is located at " ++ build_options.config_directory ++ "/ly/config.ini.", .{});
std.process.exit(0); std.process.exit(0);
} }
if (res.args.version != 0) { if (res.args.version != 0) {
@@ -206,28 +201,22 @@ pub fn main(init: std.process.Init) !void {
if (res.args.config) |path| config_parent_path = path; if (res.args.config) |path| config_parent_path = path;
if (res.args.@"use-kmscon-vt" != 0) state.use_kmscon_vt = true; if (res.args.@"use-kmscon-vt" != 0) state.use_kmscon_vt = true;
if (res.args.@"validate-config") |path| { if (res.args.@"validate-config") |path| {
var parser: Parser(Config) = blk: { var parser = try IniParser(Config).init(
if (std.mem.endsWith(u8, path, ".ini")) {
break :blk .{ .ini = try IniParser(Config).init(
state.allocator, state.allocator,
state.io, state.io,
path, path,
migrator.configFieldHandler, migrator.configFieldHandler,
) }; );
} else {
break :blk .{ .lua = try LuaParser(Config).init(state.allocator, path) };
}
};
defer parser.deinit(); defer parser.deinit();
for (parser.errors().items) |err| { for (parser.errors.items) |err| {
std.log.err( std.log.err(
"failed to convert value '{s}' of option '{s}' to type '{s}': {s}", "failed to convert value '{s}' of option '{s}' to type '{s}': {s}",
.{ err.value, err.key, err.type_name, err.error_name }, .{ err.value, err.key, err.type_name, err.error_name },
); );
} }
if (parser.maybe_load_error()) |err| { if (parser.maybe_load_error) |err| {
std.log.err("failed to load config file: {s}", .{@errorName(err)}); std.log.err("failed to load config file: {s}", .{@errorName(err)});
std.process.exit(1); std.process.exit(1);
} }
@@ -243,29 +232,12 @@ pub fn main(init: std.process.Init) !void {
state.allocator.free(state.old_save_path); state.allocator.free(state.old_save_path);
}; };
// Test for presence of Lua config file first const config_path = try std.Io.Dir.path.join(state.allocator, &[_][]const u8{ config_parent_path, "config.ini" });
// If it fails, fall back to ini
var config_path = try std.Io.Dir.path.join(state.allocator, &[_][]const u8{ config_parent_path, "config.lua" });
std.Io.Dir.accessAbsolute(state.io, config_path, .{}) catch {
state.allocator.free(config_path);
config_path = try std.Io.Dir.path.join(state.allocator, &[_][]const u8{ config_parent_path, "config.ini" });
};
defer state.allocator.free(config_path); defer state.allocator.free(config_path);
custom.binds = .empty; custom.binds = .empty;
custom.labels = .empty; custom.labels = .empty;
var config_parser: Parser(Config) = blk: { var config_parser = try IniParser(Config).init(state.allocator, state.io, config_path, migrator.configFieldHandler);
if (std.mem.endsWith(u8, config_path, ".ini")) {
break :blk .{ .ini = try IniParser(Config).init(
state.allocator,
state.io,
config_path,
migrator.configFieldHandler,
) };
} else {
break :blk .{ .lua = try LuaParser(Config).init(state.allocator, config_path) };
}
};
defer config_parser.deinit(); defer config_parser.deinit();
defer if (!shutdown or !restart) { defer if (!shutdown or !restart) {
var iter = custom.binds.iterator(); var iter = custom.binds.iterator();
@@ -284,7 +256,7 @@ pub fn main(init: std.process.Init) !void {
custom.labels.deinit(temporary_allocator); custom.labels.deinit(temporary_allocator);
}; };
state.config = config_parser.structure(); state.config = config_parser.structure;
var lang_buffer: [16]u8 = undefined; var lang_buffer: [16]u8 = undefined;
const lang_file = try std.fmt.bufPrint(&lang_buffer, "{s}.ini", .{state.config.lang}); const lang_file = try std.fmt.bufPrint(&lang_buffer, "{s}.ini", .{state.config.lang});
@@ -302,7 +274,7 @@ pub fn main(init: std.process.Init) !void {
state.old_save_path = try std.Io.Dir.path.join(state.allocator, &[_][]const u8{ config_parent_path, "save.ini" }); state.old_save_path = try std.Io.Dir.path.join(state.allocator, &[_][]const u8{ config_parent_path, "save.ini" });
} }
if (config_parser.maybe_load_error() == null and config_parser == .ini) { if (config_parser.maybe_load_error == null) {
migrator.lateConfigFieldHandler(&state.config, state.lang); migrator.lateConfigFieldHandler(&state.config, state.lang);
} }
@@ -347,8 +319,7 @@ pub fn main(init: std.process.Init) !void {
} }
while (reader.seek < reader.buffer.len) { while (reader.seek < reader.buffer.len) {
var line = reader.takeDelimiterInclusive('\n') catch break; const line = reader.takeDelimiterInclusive('\n') catch break;
if (std.mem.startsWith(u8, line, "ly/tty")) continue;
var user = std.mem.splitScalar(u8, line[0..(line.len - 1)], ':'); var user = std.mem.splitScalar(u8, line[0..(line.len - 1)], ':');
const username = user.next() orelse continue; const username = user.next() orelse continue;
@@ -363,8 +334,19 @@ pub fn main(init: std.process.Init) !void {
.allocated_username = true, .allocated_username = true,
}); });
} }
}
updateTtyCache(&state, .{ .usernames = usernames.items }) catch break :read_save_file; // If no save file previously existed, fill it up with all usernames
// TODO: Add new username with existing save file
if (state.config.save_file_dir != null and state.saved_users.user_list.items.len == 0) {
for (usernames.items) |user| {
try state.saved_users.user_list.append(state.allocator, .{
.username = user,
.session_index = 0,
.first_run = true,
.allocated_username = false,
});
}
} }
var log_file_buffer: [1024]u8 = undefined; var log_file_buffer: [1024]u8 = undefined;
@@ -577,7 +559,6 @@ pub fn main(init: std.process.Init) !void {
null, null,
state.buffer.fg, state.buffer.fg,
state.buffer.bg, state.buffer.bg,
state.config.bigclock_outline_fg,
switch (state.config.bigclock) { switch (state.config.bigclock) {
.none, .en => .en, .none, .en => .en,
.fa => .fa, .fa => .fa,
@@ -662,7 +643,7 @@ pub fn main(init: std.process.Init) !void {
); );
} }
if (config_parser.maybe_load_error()) |load_error| { if (config_parser.maybe_load_error) |load_error| {
// We can't localize this since the config failed to load so we'd fallback to the default language anyway // We can't localize this since the config failed to load so we'd fallback to the default language anyway
try state.info_line.addMessage( try state.info_line.addMessage(
"unable to parse config file", "unable to parse config file",
@@ -676,7 +657,7 @@ pub fn main(init: std.process.Init) !void {
.{@errorName(load_error)}, .{@errorName(load_error)},
); );
for (config_parser.errors().items) |err| { for (config_parser.errors.items) |err| {
try state.log_file.err( try state.log_file.err(
state.io, state.io,
"conf", "conf",
@@ -890,9 +871,6 @@ pub fn main(init: std.process.Init) !void {
); );
defer state.password_label.deinit(); defer state.password_label.deinit();
state.maybe_old_password = null;
defer if (state.maybe_old_password) |pass| state.allocator.free(pass);
state.insert_mode = !state.config.vi_mode or state.config.vi_default_mode == .insert; state.insert_mode = !state.config.vi_mode or state.config.vi_default_mode == .insert;
state.password = try Text.init( state.password = try Text.init(
@@ -1011,10 +989,7 @@ pub fn main(init: std.process.Init) !void {
); );
break :no_tty_found build_options.fallback_tty; break :no_tty_found build_options.fallback_tty;
}; };
if (!state.use_kmscon_vt) switch_tty: { if (!state.use_kmscon_vt) {
if (state.config.grab_focus_tty) |tty| {
if (tty != state.active_tty) break :switch_tty;
}
interop.switchTty(state.active_tty) catch |err| { interop.switchTty(state.active_tty) catch |err| {
try state.info_line.addMessage( try state.info_line.addMessage(
state.lang.err_switch_tty, state.lang.err_switch_tty,
@@ -1088,12 +1063,10 @@ pub fn main(init: std.process.Init) !void {
&state.animate, &state.animate,
state.config.animation_timeout_sec, state.config.animation_timeout_sec,
state.config.animation_frame_delay, state.config.animation_frame_delay,
state.config.gameoflife_param_survival,
state.config.gameoflife_param_birth,
); );
animation = game_of_life.widget(); animation = game_of_life.widget();
}, },
.dur => { .dur_file => {
var dur = try DurFile.init( var dur = try DurFile.init(
state.allocator, state.allocator,
state.io, state.io,
@@ -1148,8 +1121,6 @@ pub fn main(init: std.process.Init) !void {
// Skip if autologin is active to prevent overriding autologin session // Skip if autologin is active to prevent overriding autologin session
var default_input = state.config.default_input; var default_input = state.config.default_input;
const min_session_index = state.session.label.list.items.len - 1;
if (state.config.save_file_dir != null and !state.is_autologin) { if (state.config.save_file_dir != null and !state.is_autologin) {
if (state.login_text) |box| { if (state.login_text) |box| {
if (state.saved_username) |username| { if (state.saved_username) |username| {
@@ -1161,23 +1132,16 @@ pub fn main(init: std.process.Init) !void {
for (state.saved_users.user_list.items) |user| { for (state.saved_users.user_list.items) |user| {
if (std.mem.eql(u8, username, user.username)) { if (std.mem.eql(u8, username, user.username)) {
state.session.label.current = @min(user.session_index, min_session_index); state.session.label.current = @min(user.session_index, state.session.label.list.items.len - 1);
break; break;
} }
} }
} }
} else if (state.tty_cache[state.active_tty]) |user_index| { } else if (state.saved_users.last_username_index) |index| load_last_user: {
const user_session_index = state.login.?.label.list.items[user_index].session_index.*;
state.login.?.label.current = user_index;
state.session.label.current = @min(user_session_index, min_session_index);
} else if (state.saved_users.last_username_index) |last_user_index| load_last_user: {
const saved_users = state.saved_users.user_list.items;
// If the saved index isn't valid, bail out // If the saved index isn't valid, bail out
if (last_user_index >= saved_users.len) break :load_last_user; if (index >= state.saved_users.user_list.items.len) break :load_last_user;
const user = saved_users[last_user_index]; const user = state.saved_users.user_list.items[index];
// Find user with saved name, and switch over to it // Find user with saved name, and switch over to it
// If it doesn't exist (anymore), we don't change the value // If it doesn't exist (anymore), we don't change the value
@@ -1190,7 +1154,7 @@ pub fn main(init: std.process.Init) !void {
default_input = .password; default_input = .password;
state.session.label.current = @min(user.session_index, min_session_index); state.session.label.current = @min(user.session_index, state.session.label.list.items.len - 1);
} }
} }
@@ -1498,6 +1462,23 @@ fn authenticate(ptr: *anyopaque) !bool {
state.config.error_bg, state.config.error_bg,
state.config.error_fg, state.config.error_fg,
); );
if (!state.is_autologin) {
state.info_line.clearRendered(state.allocator) catch |err| {
try state.info_line.addMessage(
state.lang.err_alloc,
state.config.error_bg,
state.config.error_fg,
);
try state.log_file.err(
state.io,
"tui",
"failed to clear info line: {s}",
.{@errorName(err)},
);
};
state.info_line.label.draw();
try TerminalBuffer.presentBuffer();
}
return false; return false;
} }
@@ -1535,51 +1516,28 @@ fn authenticate(ptr: *anyopaque) !bool {
.{}, .{},
) catch {}; ) catch {};
const current: u8 = @intCast(state.login.?.label.current); var file = std.Io.Dir.cwd().createFile(state.io, state.save_path, .{}) catch |err| {
const login_users = state.login.?.label.list.items;
// Try to update the local tty cache before overwriting,
// since multiple instances can be running
updateTtyCache(state, .{ .user_list = login_users }) catch |err| {
state.log_file.err( state.log_file.err(
state.io, state.io,
"sys", "sys",
"failed to update cache: {s}", "failed to create save file: {s}",
.{@errorName(err)}, .{@errorName(err)},
) catch {};
};
var save_file = std.Io.Dir.cwd().createFile(state.io, state.save_path, .{}) catch |err| {
state.log_file.err(
state.io,
"sys",
"failed to create save file: {s} {s}",
.{ @errorName(err), state.save_path },
) catch break :save_last_settings; ) catch break :save_last_settings;
break :save_last_settings; break :save_last_settings;
}; };
defer save_file.close(state.io); defer file.close(state.io);
var file_buffer: [256]u8 = undefined; var file_buffer: [256]u8 = undefined;
var file_writer = save_file.writer(state.io, &file_buffer); var file_writer = file.writer(state.io, &file_buffer);
var writer = &file_writer.interface; var writer = &file_writer.interface;
if (state.login_text) |box| { if (state.login_text) |box| {
try writer.print("0-{s}\n", .{box.text.items}); try writer.print("0-{s}\n", .{box.text.items});
} else { } else {
try writer.print("{d}\n", .{current}); try writer.print("{d}\n", .{state.login.?.label.current});
}
for (login_users) |user| {
try writer.print("{s}:{d}\n", .{ user.name, user.session_index.* });
}
state.tty_cache[state.active_tty] = current;
for (state.tty_cache, 0..) |maybe_user_index, tty_num| {
if (maybe_user_index) |user_index| {
// Posix usernames can't contain a '/'
// And, well, if your username is this string...
try writer.print("ly/tty{d}:{s}\n", .{ tty_num, login_users[user_index].name });
} }
for (state.saved_users.user_list.items) |user| {
try writer.print("{s}:{d}\n", .{ user.username, user.session_index });
} }
try writer.flush(); try writer.flush();
@@ -1614,7 +1572,6 @@ fn authenticate(ptr: *anyopaque) !bool {
.xauth_cmd = state.config.xauth_cmd, .xauth_cmd = state.config.xauth_cmd,
.setup_cmd = state.config.setup_cmd, .setup_cmd = state.config.setup_cmd,
.login_cmd = state.config.login_cmd, .login_cmd = state.config.login_cmd,
.faillock_tally_dir = state.config.faillock_tally_dir,
.x_cmd = state.config.x_cmd, .x_cmd = state.config.x_cmd,
.x_vt = state.config.x_vt, .x_vt = state.config.x_vt,
.session_pid = session_pid, .session_pid = session_pid,
@@ -1638,8 +1595,7 @@ fn authenticate(ptr: *anyopaque) !bool {
auth_options, auth_options,
current_environment, current_environment,
if (state.login_text) |box| box.text.items else state.login.?.getCurrentUsername(), if (state.login_text) |box| box.text.items else state.login.?.getCurrentUsername(),
if (state.maybe_old_password) |pass| pass else password_text, password_text,
if (state.maybe_old_password != null) password_text else null,
) catch |err| { ) catch |err| {
shared_err.writeError(err); shared_err.writeError(err);
@@ -1651,19 +1607,12 @@ fn authenticate(ptr: *anyopaque) !bool {
std.process.exit(0); std.process.exit(0);
} }
if (state.maybe_old_password) |pass| {
state.allocator.free(pass);
state.maybe_old_password = null;
}
if (session_pid != -1) {
var session_status: c_int = undefined; var session_status: c_int = undefined;
_ = std.posix.system.waitpid(session_pid, &session_status, 0); _ = std.posix.system.waitpid(session_pid, &session_status, 0);
// HACK: It seems like the session process is not exiting immediately after the waitpid call. // HACK: It seems like the session process is not exiting immediately after the waitpid call.
// This is a workaround to ensure the session process has exited before re-initializing the TTY. // This is a workaround to ensure the session process has exited before re-initializing the TTY.
state.io.sleep(.fromSeconds(1), .real) catch {}; state.io.sleep(.fromSeconds(1), .real) catch {};
session_pid = -1; session_pid = -1;
}
try state.log_file.reinit(state.io); try state.log_file.reinit(state.io);
} }
@@ -1671,20 +1620,7 @@ fn authenticate(ptr: *anyopaque) !bool {
try state.buffer.reclaim(); try state.buffer.reclaim();
const auth_err = shared_err.readError(); const auth_err = shared_err.readError();
if (auth_err) |err| handle_error: { if (auth_err) |err| {
if (err == error.PamNewAuthTokenRequired) {
try state.info_line.addMessage(
state.lang.token_expired,
state.config.bg,
state.config.fg,
);
state.maybe_old_password = try state.allocator.dupe(u8, state.password.text.items);
state.password.clear();
state.is_autologin = false;
break :handle_error;
}
state.auth_fails += 1; state.auth_fails += 1;
state.buffer.setActiveWidget(state.password_widget); state.buffer.setActiveWidget(state.password_widget);
@@ -2322,8 +2258,7 @@ fn positionWidgets(ptr: *anyopaque) !void {
const clock_text_len = TerminalBuffer.strWidth(state.bigclock_label.text) * (BigLabel.CHAR_WIDTH + 1); const clock_text_len = TerminalBuffer.strWidth(state.bigclock_label.text) * (BigLabel.CHAR_WIDTH + 1);
if (state.config.bigclock != .none) { if (state.config.bigclock != .none) {
const gap: usize = if (state.config.bigclock_outline_fg != null) 3 else 2; bb_height += BigLabel.CHAR_HEIGHT + 2;
bb_height += BigLabel.CHAR_HEIGHT + gap;
bb_width = @max(bb_width, clock_text_len); bb_width = @max(bb_width, clock_text_len);
} }
@@ -2473,12 +2408,7 @@ fn crawl(session: *Session, io: std.Io, lang: Lang, path: []const u8, display_se
for (desktop_names) |*c| { for (desktop_names) |*c| {
if (c.* == ';') c.* = ':'; if (c.* == ';') c.* = ':';
} }
if (desktop_names[desktop_names.len - 1] == ':') {
maybe_xdg_desktop_names = desktop_names[0 .. desktop_names.len - 1];
} else {
maybe_xdg_desktop_names = desktop_names; maybe_xdg_desktop_names = desktop_names;
}
} else if (display_server != .custom) { } else if (display_server != .custom) {
// If DesktopNames is empty, and this isn't a custom session entry, // If DesktopNames is empty, and this isn't a custom session entry,
// we'll take the name of the session file // we'll take the name of the session file
@@ -2637,55 +2567,12 @@ fn getAuthErrorMsg(err: anyerror, lang: Lang) []const u8 {
error.PamCredentialsInsufficient => lang.err_pam_cred_insufficient, error.PamCredentialsInsufficient => lang.err_pam_cred_insufficient,
error.PamCredentialsUnavailable => lang.err_pam_cred_unavail, error.PamCredentialsUnavailable => lang.err_pam_cred_unavail,
error.PamMaximumTries => lang.err_pam_maxtries, error.PamMaximumTries => lang.err_pam_maxtries,
error.PamNewAuthTokenRequired => lang.err_pam_authok_reqd,
error.PamPermissionDenied => lang.err_pam_perm_denied, error.PamPermissionDenied => lang.err_pam_perm_denied,
error.PamSessionError => lang.err_pam_session, error.PamSessionError => lang.err_pam_session,
error.PamSystemError => lang.err_pam_sys, error.PamSystemError => lang.err_pam_sys,
error.PamUserUnknown => lang.err_pam_user_unknown, error.PamUserUnknown => lang.err_pam_user_unknown,
error.PamAbort => lang.err_pam_abort, error.PamAbort => lang.err_pam_abort,
error.AccountLocked => lang.err_acc_locked,
else => @errorName(err), else => @errorName(err),
}; };
} }
// Updates the UiState's tty_cache using the save file.
// Matched against the current truthful user list to ensure it's a valid index.
fn updateTtyCache(state: *UiState, real_users: union(enum) { user_list: []UserList.User, usernames: [][]const u8 }) !void {
var save_file = try std.Io.Dir.cwd().openFile(state.io, state.save_path, .{});
defer save_file.close(state.io);
var file_buffer: [256]u8 = undefined;
var file_reader = save_file.reader(state.io, &file_buffer);
var reader = &file_reader.interface;
while (reader.seek < reader.buffer.len) {
var line = reader.takeDelimiterInclusive('\n') catch break;
if (!std.mem.startsWith(u8, line, "ly/tty")) continue;
line = line["ly/tty".len..];
var entry = std.mem.splitScalar(u8, line[0..(line.len - 1)], ':');
const tty_num_str = entry.next() orelse continue;
const saved_username = entry.next() orelse continue;
const tty_num = std.fmt.parseInt(usize, tty_num_str, 10) catch continue;
if (tty_num >= std.math.maxInt(u8)) continue;
switch (real_users) {
.usernames => |usernames| {
for (usernames, 0..) |username, u_index| {
if (std.mem.eql(u8, username, saved_username)) {
state.tty_cache[tty_num] = @intCast(u_index);
break;
}
}
},
.user_list => |user_list| {
for (user_list, 0..) |user, u_index| {
if (std.mem.eql(u8, user.name, saved_username)) {
state.tty_cache[tty_num] = @intCast(u_index);
break;
}
}
},
}
}
}