mirror of
https://github.com/fairyglade/ly.git
synced 2025-12-20 19:24:53 +00:00
* Add build.zig, remove makefile, add .idea directory to .gitignore * Remove submodules, add projects directly * Remove submodules * Add projects * Rename sub/ to dep/, remove makefiles * Rewrite main.c * Remove Argoat dependency * Remove unused dependencies * Rewrite config.c * Add files * Change default fg to 8 in config.ini * Partially rewrite utils.c * Use Zig package manager * Rewrite INPUTS enum in Zig * Commit unfinished full rewrite (Zig 0.11.0) What needs to be dealt with: - Matrix animation - Authentication part - Testing on actual TTY (not just virtual console) Signed-off-by: AnErrupTion <anerruption@disroot.org> * Implement more (untested) authentication code Signed-off-by: AnErrupTion <anerruption@disroot.org> * Fix some bugs (hopefully) Signed-off-by: AnErrupTion <anerruption@disroot.org> * Try to fix some more bugs Signed-off-by: AnErrupTion <anerruption@disroot.org> * Oops, forgot to allocate hehe Signed-off-by: AnErrupTion <anerruption@disroot.org> * Changes in the Zig rewrite (#596) * Everything * make matrix.zig a bit cleaner * make long lines shorter and add changelog * vi mode * update changelog * get errors from child process and (hopefully) fix some other things * fix utmp entry * run authentication in a child process * update changelog * small code improvements * change that * clear terminal on SIGTERM * Remove LogFile * moved ini to a lib, fixed alternative langs * fix logging out * oops * code improvements * consistency * clearing the env isn't needed anymore (afaik) * replace vi_mode with a bool * type aliases, avoiding zeroes(), breaking a long line * lowercase insert/normal, merge conditionals, code improvements * Add experimental save file migrator + bug fixes + add "-dev" version suffix Signed-off-by: AnErrupTion <anerruption@disroot.org> * Resolve conflicts Signed-off-by: AnErrupTion <anerruption@disroot.org> * Clean up when SIGTERM is received (#597) * clean up child processes on SIGTERM * small code improvement * consistency.. i guess? * Properly set XDG_CURRENT_DESKTOP Signed-off-by: AnErrupTion <anerruption@disroot.org> * Zig 0.12.0 and more! (#599) * less alloc, update migrator, get DesktopNames from .desktop * small cleanup * Update zigini to improve compatibility with old config * Code improvements * Update to zig version 0.12.0 * Some fixes * tiny changes * remove useless comment * migrator changes, and small things * set XDG env vars differently * free memory on error when appending environments * Fix out of bounds issue when using the Delete key Signed-off-by: AnErrupTion <anerruption@disroot.org> * Update zig-ini to fix configuration issue (#603) * Mention display-manager-init for Gentoo/OpenRC in readme.md Signed-off-by: AnErrupTion <anerruption@disroot.org> * Tidy up readme.md Signed-off-by: AnErrupTion <anerruption@disroot.org> * Fix authentication in a few edge cases (#604) * fix loginConv and auth * fix potential mem leak with configs * BIG changes --------- Signed-off-by: AnErrupTion <anerruption@disroot.org> Co-authored-by: アシュ <120780645+Kawaii-Ash@users.noreply.github.com>
51 lines
1.6 KiB
INI
51 lines
1.6 KiB
INI
capslock = capslock
|
|
err_alloc = failed memory allocation
|
|
err_bounds = out-of-bounds index
|
|
err_chdir = failed to open home folder
|
|
err_console_dev = failed to access console
|
|
err_dgn_oob = log message
|
|
err_domain = invalid domain
|
|
err_hostname = failed to get hostname
|
|
err_mlock = failed to lock password memory
|
|
err_null = null pointer
|
|
err_pam = pam transaction failed
|
|
err_pam_abort = pam transaction aborted
|
|
err_pam_acct_expired = account expired
|
|
err_pam_auth = authentication error
|
|
err_pam_authinfo_unavail = failed to get user info
|
|
err_pam_authok_reqd = token expired
|
|
err_pam_buf = memory buffer error
|
|
err_pam_cred_err = failed to set credentials
|
|
err_pam_cred_expired = credentials expired
|
|
err_pam_cred_insufficient = insufficient credentials
|
|
err_pam_cred_unavail = failed to get credentials
|
|
err_pam_maxtries = reached maximum tries limit
|
|
err_pam_perm_denied = permission denied
|
|
err_pam_session = session error
|
|
err_pam_sys = system error
|
|
err_pam_user_unknown = unknown user
|
|
err_path = failed to set path
|
|
err_perm_dir = failed to change current directory
|
|
err_perm_group = failed to downgrade group permissions
|
|
err_perm_user = failed to downgrade user permissions
|
|
err_pwnam = failed to get user info
|
|
err_unknown = an unknown error occurred
|
|
err_user_gid = failed to set user GID
|
|
err_user_init = failed to initialize user
|
|
err_user_uid = failed to set user UID
|
|
err_xsessions_dir = failed to find sessions folder
|
|
err_xsessions_open = failed to open sessions folder
|
|
insert = insert
|
|
login = login
|
|
logout = logged out
|
|
normal = normal
|
|
numlock = numlock
|
|
password = password
|
|
restart = reboot
|
|
shell = shell
|
|
shutdown = shutdown
|
|
sleep = sleep
|
|
wayland = wayland
|
|
xinitrc = xinitrc
|
|
x11 = x11
|