diff options
author | Soispha <soispha@vhack.eu> | 2023-08-26 13:47:55 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-08-26 13:50:01 +0200 |
commit | a01a3d4f5494855abf52f42c886a75b4500f35d5 (patch) | |
tree | a94dc7022ee9be3b53dc3a897209d2086759b260 /home-manager/soispha/config/lf/commands/scripts | |
parent | Feat(hm/conf/neovim/plugins/goto-preview): Init (diff) | |
download | nixos-config-a01a3d4f5494855abf52f42c886a75b4500f35d5.zip |
Docs(treewide): Add a colon after every "TODO"
Diffstat (limited to 'home-manager/soispha/config/lf/commands/scripts')
4 files changed, 4 insertions, 4 deletions
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";; |