this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

curve: add kitaab unlinked fzf command

+12
+11
home/profiles/desktop/bin/ku
··· 1 + #!/usr/bin/env bash 2 + 3 + # Use fzf to select a file and capture the output 4 + selected_file=$(python3 poonam/main.py report --titles=false | head -n -2 | fzf --preview 'bat --color=always --terminal-width -1 ./vimwiki/{}') 5 + 6 + # Add additional details to the file path 7 + file_path="./vimwiki/${selected_file}" 8 + 9 + # Open the file in vim for editing 10 + vim "${file_path}" 11 +
+1
home/profiles/desktop/default.nix
··· 135 135 ".local/bin/screenshot".source = ./bin/screenshot; 136 136 ".local/bin/mpv-ify".source = ./bin/mpv-ify; 137 137 ".local/bin/bspswallow".source = ./bin/bspswallow; 138 + ".local/bin/ku".source = ./bin/ku; 138 139 ".config/bspwm/terminals".text = "Kitty"; 139 140 ".config/eww/eww.yuck".source = ./eww/eww.yuck; 140 141 ".config/eww/eww.scss".source = ./eww/eww.scss;