Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | fix(modules/lf/commands/archive_decompress): Pipe the filenames not the file | Benedikt Peetz | 8 days |
| | | | | | Previously, we piped `$fx` directly into the shell, resulting in it opening the archive and interpreting it as the file name. | ||
* | fix(modules/lf/commands/trash_{clear,restore}): Don't start trash's ↵ | Benedikt Peetz | 8 days |
| | | | | | | | | interactive mode When no files have been selected, trashy's trash client will start an "interactive" mode and prompt for the files _again_. This should obviously be avoided. | ||
* | fix(modules/lf/commands/trash_{clear,restore}): Use full path to file | Benedikt Peetz | 8 days |
| | | | | Otherwise, `trash {empty,restore}` will not find it. | ||
* | fix(modules/lf/commands/trash_{clear,restore}): Allow ansi codes in fzf | Benedikt Peetz | 8 days |
| | |||
* | fix(modules/lf/keybindings/): Use the correct name for `trash_clear` | Benedikt Peetz | 8 days |
| | |||
* | fix(modules/lf/commands/): Correctly modify `$@` when in a while read loop | Benedikt Peetz | 8 days |
| | | | | | | | | | | Previously, I just piped into the loop which resulted in it becoming a subshell (i.e., all variable assignments were local to that loop.) The only way to work around this in POSIX shell is via temporary files, like implemented in the `base.sh` `tmp` function. I'd hoped to finally rid myself of these, when migrating away from the sysLib, but I see no other way to achieve the desired result. | ||
* | fix(modules/lf/commands/trash_restore): Depend on `gawk` not `gaw` | Benedikt Peetz | 8 days |
| | |||
* | fix(modules/lf/commands): Rework | Benedikt Peetz | 8 days |
| | | | | | - Remove the dependency on `sysLib` - And rework each script, fixing old mistakes | ||
* | feat(modules/lf/commands/view_file): Also use `$READER` for epub files | Benedikt Peetz | 11 days |
| | |||
* | fix(modules/lf/ctpv/prev/archiver): Remove `arc` | Benedikt Peetz | 12 days |
| | |||
* | fix(pkgs/{atuin,ctpv}): Extend instead of replace | Benedikt Peetz | 2024-12-30 |
| | | | | This allows me, to still benefit from upstream version updates. | ||
* | fix(modules/lf/ctpv/prev/achrive): Remove `arj` | Benedikt Peetz | 2024-12-30 |
| | | | | This package fails to build currently | ||
* | fix(modules/lf/ctpv/xxd): Use unlimited length when piped to less | Benedikt Peetz | 2024-12-30 |
| | |||
* | fix(modules/lf/ctpv/prev/any): Fix typo in `preview_xxd` function call | Benedikt Peetz | 2024-12-20 |
| | |||
* | fix(modules/lf): Always retry connecting to the server | Benedikt Peetz | 2024-12-15 |
| | | | | Otherwise, the connection seems to fail again. | ||
* | fix(modules/lf/ctpv/prev/any): Also provide the `HELPERS` replacementString | Benedikt Peetz | 2024-12-15 |
| | |||
* | refactor(modules/lf/ctpv/prev): Make all implicit dependencies explicit | Benedikt Peetz | 2024-12-15 |
| | |||
* | fix(modules/lf/ctpv/prev/{any,inode}): Use the correct module options | Benedikt Peetz | 2024-12-14 |
| | |||
* | feat(modules/lf/ctpv): Rework as module with autoloading | Benedikt Peetz | 2024-12-14 |
| | |||
* | feat(modules/lf): Add a keymap for cd-ing to the download directory | Benedikt Peetz | 2024-11-30 |
| | |||
* | fix(modules/lf/cmds/set_clipboard_path): Provide feedback to the user | Benedikt Peetz | 2024-11-29 |
| | |||
* | fix(modules/lf): Retry connecting to the server | Benedikt Peetz | 2024-11-29 |
| | | | | | | It is possible that the config file is sourced, without a started server. This is effectively a race condition, which can only be fixed upstream, but we can at least try to connect to the server again. | ||
* | feat(modules/lf): Add `set_clipboard_path` command and keybinding | Benedikt Peetz | 2024-11-26 |
| | |||
* | fix(modules/lf/ctpv): Don't try to preview `.xcf` images | Benedikt Peetz | 2024-11-25 |
| | |||
* | fix(modules/lf/ctpv/helpers): Turn of `chafa`'s animations | Benedikt Peetz | 2024-11-25 |
| | |||
* | fix(modules/lf): Ensure, that the remote mapping source command works | Benedikt Peetz | 2024-11-25 |
| | |||
* | fix(modules/lf/ctpv/): Support color output, by simulating a interactive shell | Benedikt Peetz | 2024-11-25 |
| | |||
* | fix(modules/lf/ctpv/prev/glow): Force glow to colorize the output | Benedikt Peetz | 2024-11-24 |
| | |||
* | fix(modules/lf): Use the correct name for the ctpv config file | Benedikt Peetz | 2024-11-24 |
| | |||
* | docs(modules/lf/ctpv/prev/any): Add a fixme | Benedikt Peetz | 2024-11-24 |
| | |||
* | fix(modules/lf/ctpv): Improve ctpv config file generation | Benedikt Peetz | 2024-11-24 |
| | |||
* | feat(modules/lf/ctpv): Correct configure | Benedikt Peetz | 2024-11-24 |
| | | | | This also ensures, that all the needed previewers are available | ||
* | feat(modules/lf): Dynamically generate the cd script | Benedikt Peetz | 2024-11-24 |
| | | | | | This both avoids having to commit the `lf_cd.age` file and ensures that it is always up to date. | ||
* | build(flake): Update | Benedikt Peetz | 2024-11-22 |
| | |||
* | build(treewide): Update | Benedikt Peetz | 2024-11-16 |
| | |||
* | build(treewide): Update | Benedikt Peetz | 2024-11-01 |
| | |||
* | build(modules/lf/secrets/update_secrets.sh): Migrate to `nix-shell` shebang | Benedikt Peetz | 2024-11-01 |
| | | | | | Lix does not (maybe yet) support the nix3 `nix shell` shebang. Thus, switching to a version supported by both is the obvious choice. | ||
* | build(treewide): Update | Benedikt Peetz | 2024-10-19 |
| | |||
* | refactor(modules/legacy/conf/lf): Move to new `by-name` dir | Benedikt Peetz | 2024-10-18 |
This makes it possible to mix and match between `NixOS` and `home-manager` options and thus allows merging the secret handling directly into this module. Furthermore, the `systemd` tempfiles handling was also merged into this module. |