diff options
Diffstat (limited to 'home-manager/soispha/config/lf/commands')
5 files changed, 6 insertions, 6 deletions
diff --git a/home-manager/soispha/config/lf/commands/default.nix b/home-manager/soispha/config/lf/commands/default.nix index 80d20ca8..ae7ee068 100644 --- a/home-manager/soispha/config/lf/commands/default.nix +++ b/home-manager/soispha/config/lf/commands/default.nix @@ -181,7 +181,7 @@ in { dependencies = builtins.attrValues { #inherit #(pkgs) - ## TODO rewrite this: bookmenu, https://github.com/jarun/buku + ## TODO: rewrite this: bookmenu, https://github.com/jarun/buku # #buku #; @@ -232,7 +232,7 @@ in { (pkgs) gnutar unzip - # TODO this is unfree! unrar + # TODO: this is unfree! unrar p7zip ; diff --git a/home-manager/soispha/config/lf/commands/scripts/open_config b/home-manager/soispha/config/lf/commands/scripts/open_config index c99422f1..35e5165d 100755 --- a/home-manager/soispha/config/lf/commands/scripts/open_config +++ b/home-manager/soispha/config/lf/commands/scripts/open_config @@ -3,5 +3,5 @@ # shellcheck source=/dev/null SHELL_LIBRARY_VERSION="1.1.4" . %SHELL_LIBRARY_PATH -"$EDITOR" "$(bookmenu -b ~/.config/bookmenu/configs -f fzf -o)" # TODO implement this +"$EDITOR" "$(bookmenu -b ~/.config/bookmenu/configs -f fzf -o)" # TODO: implement this # vim: ft=sh diff --git a/home-manager/soispha/config/lf/commands/scripts/set_wall_paper b/home-manager/soispha/config/lf/commands/scripts/set_wall_paper index 45049283..c493e773 100755 --- a/home-manager/soispha/config/lf/commands/scripts/set_wall_paper +++ b/home-manager/soispha/config/lf/commands/scripts/set_wall_paper @@ -3,7 +3,7 @@ # shellcheck source=/dev/null SHELL_LIBRARY_VERSION="1.1.4" . %SHELL_LIBRARY_PATH -die "No yet implemented" # TODO do what the 'die' says +die "No yet implemented" # TODO: do what the 'die' says #sed -i "s,export AWMWALLPAPER='.*',export AWMWALLPAPER='${f}'," ${ZDOTDIR}/.zshenv #nohub swaybg -i "$f" #feh --bg-max --no-fehbg "$f" diff --git a/home-manager/soispha/config/lf/commands/scripts/trash b/home-manager/soispha/config/lf/commands/scripts/trash index 7f477550..8dd6033d 100755 --- a/home-manager/soispha/config/lf/commands/scripts/trash +++ b/home-manager/soispha/config/lf/commands/scripts/trash @@ -10,7 +10,7 @@ while read -r file; do set -- "$@" "$file" done < "$(tmp "echo '$fx'")" -# TODO why are we using trashy at all, when trash-cli can do everything? +# TODO: why are we using trashy at all, when trash-cli can do everything? # try trashy first, trough nix because both trashy and trash-cli provide a trash command, which conflicts nix run nixpkgs#trashy -- put "$@" 2> "$trash_output"; diff --git a/home-manager/soispha/config/lf/commands/scripts/unarchive b/home-manager/soispha/config/lf/commands/scripts/unarchive index 69cc601c..ee97f3b1 100755 --- a/home-manager/soispha/config/lf/commands/scripts/unarchive +++ b/home-manager/soispha/config/lf/commands/scripts/unarchive @@ -6,7 +6,7 @@ SHELL_LIBRARY_VERSION="1.1.4" . %SHELL_LIBRARY_PATH # extract the current file with the right command # (xkcd link: https://xkcd.com/1168/) set -f -# TODO add support for multiple files at once +# TODO: add support for multiple files at once case "$f" in *.tar.bz|*.tar.bz2|*.tbz|*.tbz2) tar xjvf "$f";; *.tar.gz|*.tgz) tar xzvf "$f";; |