aboutsummaryrefslogtreecommitdiffstats
path: root/modules/by-name (unfollow)
Commit message (Collapse)Author
2025-04-04feat(modules/lf/ctpv/application/x-pem-file): Include previewerBenedikt Peetz
2025-04-04style(treewide): FormatBenedikt Peetz
2025-04-04fix(treewide): Migrate to taskwarrior version 3Benedikt Peetz
2025-04-04fix(modules/tskm): Allocate Firefox profile id's consecutivelyBenedikt Peetz
Firefox apparently needs to have ID's staring from 0 and then counting up. This seems like an implementation detail leaking out, but … well it's Firefox.
2025-04-04fix(modules/firefox): Sort the languages according to my preferenceBenedikt Peetz
2025-04-04fix(modules/timewarrior): Use the correct attribute path for the taskwarrior ↵Benedikt Peetz
config
2025-04-04fix(modules/nix): Don't keep failed build directoriesBenedikt Peetz
This feature might be useful, but nix also keeps all transitive dependencies of the failed build. This means that if a big build fails (which might happen repeatably if I debug the build), then the temp directory might fill itself leading to a full system oom.
2025-04-04docs(modules): Add FIXME/TODO commentsBenedikt Peetz
2025-04-04refactor(treewide): Remove unneeded lambda arguments with deadnixBenedikt Peetz
The command was: ``` deadnix --output-format json | while read -r line; do echo "$line" | jq .file --raw-output; done | xargs nvim ```
2025-04-04fix(modules/lf/commands/thrash_*): Support paths with spaces in themBenedikt Peetz
Oherwise `./some thrash path` would not work.
2025-04-04fix(modules/lf/commands/open): Explicitly use `handlr-regex` instead of ↵Benedikt Peetz
`xdg-open`
2025-04-04refactor(treewide): neorg -> tskmBenedikt Peetz
2025-04-04refactor(modules/timewarrior): Migrate to by-nameBenedikt Peetz
2025-04-04feat(modules/tskm): Init moduleBenedikt Peetz
This module does what was previously squashed into the firefox, taskwarrior and nvim modules.
2025-04-04feat(modules/legacy/taskwarrior): Migrate to by-nameBenedikt Peetz
2025-04-02refactor(modules/legacy/firefox): Move to by-nameBenedikt Peetz
This also improves the arkanfox-integration and the profile id generation.
2025-04-02refactor(treewide): Remove `river_init_lesser`Benedikt Peetz
This was moved in-tree a while ago.
2025-03-31fix(modules/lf/commands): Also include a coreutils implementationBenedikt Peetz
2025-03-31fix(modules/lf/commands): Add needed dependencies of the helpers.shBenedikt Peetz
2025-03-31fix(modules/lf/commands): Avoid inheriting the path by defaultBenedikt Peetz
All the commands should have their respective dependencies set. The ones that need external commands (i.e., `execute`) can opt into keeping their path set.
2025-03-31fix(modules/lf/commands/dragon-*): Use new `dragon-drop` nameBenedikt Peetz
The old name conflicted with KDE's dragon media player.
2025-03-30fix(modules/{atuin,zsh}): Avoid atuin keymaps overriding mineBenedikt Peetz
2025-03-29fix(modules/nvim/plgs/telescope/extensions/bibtex): DisableBenedikt Peetz
This is not used much, and I can wait until it is in nixpkgs.
2025-03-29fix(modules/nvim/plgs/lf-nvim): Use the package from my nixpgks prBenedikt Peetz
2025-03-29fix(modules/xdg): Migrate to the merged xdg-desktop-terminal-filechooserBenedikt Peetz
2025-02-22build(pkgs/yt): UpdateBenedikt Peetz
2025-02-04fix(modules/river): Mark the `init` file executableBenedikt Peetz
2025-02-03feat(modules/mpv): Migrate to `by-name` and add some scriptsBenedikt Peetz
2025-02-03style(treewide): FormatBenedikt Peetz
2025-02-03fix(pkgs/river-start): Create a wrapper script for river to store logsBenedikt Peetz
2025-02-03fix(modules/lf/colors): Remove unused hidden home filesBenedikt Peetz
All these files are no longer there, and if they start to crop up again, I would like to notice it.
2025-02-03fix(modules/lf/commands/archive_{compress,decompress}): Correctly store pathsBenedikt Peetz
2025-02-03fix(modules/lf/commands/archive_decompress): Pipe the filenames not the fileBenedikt Peetz
Previously, we piped `$fx` directly into the shell, resulting in it opening the archive and interpreting it as the file name.
2025-02-03fix(modules/lf/commands/trash_{clear,restore}): Don't start trash's ↵Benedikt Peetz
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.
2025-02-03fix(modules/lf/commands/trash_{clear,restore}): Use full path to fileBenedikt Peetz
Otherwise, `trash {empty,restore}` will not find it.
2025-02-03fix(modules/lf/commands/trash_{clear,restore}): Allow ansi codes in fzfBenedikt Peetz
2025-02-02fix(modules/lf/keybindings/): Use the correct name for `trash_clear`Benedikt Peetz
2025-02-02fix(modules/lf/commands/): Correctly modify `$@` when in a while read loopBenedikt Peetz
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.
2025-02-02fix(modules/lf/commands/trash_restore): Depend on `gawk` not `gaw`Benedikt Peetz
2025-02-02docs(modules/ollama): Add TODO commentBenedikt Peetz
2025-02-02fix(modules/nvim): Use the global nixpkgs setBenedikt Peetz
2025-02-02fix(modules/lf/commands): ReworkBenedikt Peetz
- Remove the dependency on `sysLib` - And rework each script, fixing old mistakes
2025-02-02fix(modules/sound): Rename `hardware.pulseaudio` to `services.pulseaudio`Benedikt Peetz
2025-02-02fix(modules/zsh): Avoid having to rely on the `~/.zshenv` fileBenedikt Peetz
We can use the `/etc/zshenv` file.
2025-02-02fix(modules/locale): Remove the `us-modified` keymapBenedikt Peetz
This purpose is now fulfilled by the direct unicode input in form of `qmk-unicode-type`.
2025-02-02refactor(modules/river): Migrate to `by-name`Benedikt Peetz
This includes a near rewrite `river-mk-keymap` (previously, `river_init_lesser`.)
2025-02-02refactor(modules/swaylock): Migrate to by-nameBenedikt Peetz
2025-01-31fix(modules/direnv): Remove the strictness optionsBenedikt Peetz
These seem to cause an error in `nix-direnv` which is obviously not ideal.
2025-01-30feat(modules/lf/commands/view_file): Also use `$READER` for epub filesBenedikt Peetz
2025-01-30fix(modules/impermanence): Only persist `~/.mozilla/firefox`Benedikt Peetz
The other directories don't contain anything worthy to be persisted. Besides, persisting `~/.mozilla/native-messaging-hosts` results in tridactly changing the symlink to it's native messaging host.