Compare commits

..

2 Commits

Author SHA1 Message Date
Zynh Ludwig 20f17a2247 tmux-sessionizer: follow links 2024-08-05 19:08:16 -07:00
Zynh Ludwig 44eb2bd078 tmux-sessionizer: fix paths 2024-08-05 18:48:08 -07:00
1 changed files with 1 additions and 2 deletions

View File

@ -27,7 +27,6 @@ in
tmux = "${pkgs.tmux}/bin/tmux";
pgrep = "${pkgs.procps}/bin/pgrep";
basename = "${pkgs.coreutils}/bin/basename";
readlink = "${pkgs.coreutils}/bin/readlink";
tr = "${pkgs.coreutils}/bin/tr";
fzf = "${pkgs.fzf}/bin/fzf";
find = "${pkgs.findutils}/bin/find";
@ -36,7 +35,7 @@ in
if [[ $# -eq 1 ]]; then
selected=$1
else
selected=$(${find} "$(${readlink} -f ~/projects)" ~/ ~/.config ~/.suckless/ -mindepth 1 -maxdepth 1 -type d | ${fzf})
selected=$(${find} -L ~/projects ~/ ~/.config ~/src -mindepth 1 -maxdepth 1 -type d | ${fzf})
fi
if [[ -z $selected ]]; then