tmux-sessionizer: writeShellApplication
tmux-sessionizer: runtimeInputs tmux tmux-sessionizer: runtimeInputs fzf tmux-sessionizer: runtimeInputs find tmux-sessionizer: runtimeInputs coreutils tmux-sessionizer: runtimeInputs procps tmux-sessionizer: with pkgs runtimeInputs
This commit is contained in:
parent
858905ac30
commit
b5d21b8bb6
1 changed files with 24 additions and 28 deletions
|
@ -38,39 +38,35 @@ in
|
||||||
config = lib.mkIf enable {
|
config = lib.mkIf enable {
|
||||||
|
|
||||||
snowhawk.tmux.sessionizer.pkg =
|
snowhawk.tmux.sessionizer.pkg =
|
||||||
let
|
lib.mkDefault (pkgs.writeShellApplication {
|
||||||
tmux = getExe pkgs.tmux;
|
name = "tmux-sessionizer";
|
||||||
pgrep = getExe' pkgs.procps "pgrep";
|
runtimeInputs = with pkgs; [ tmux fzf findutils coreutils procps ];
|
||||||
basename = getExe' pkgs.coreutils "basename";
|
text = /* bash */ ''
|
||||||
tr = getExe' pkgs.coreutils "tr";
|
if [[ $# -eq 1 ]]; then
|
||||||
fzf = getExe pkgs.fzf;
|
selected=$1
|
||||||
find = getExe pkgs.findutils;
|
else
|
||||||
in
|
selected=$(find -L ${lib.concatStringsSep " " cfg.paths} -mindepth 1 -maxdepth 1 -type d | fzf)
|
||||||
lib.mkDefault (pkgs.writeShellScriptBin "tmux-sessionizer" ''
|
fi
|
||||||
if [[ $# -eq 1 ]]; then
|
|
||||||
selected=$1
|
|
||||||
else
|
|
||||||
selected=$(${find} -L ${lib.concatStringsSep " " cfg.paths} -mindepth 1 -maxdepth 1 -type d | ${fzf})
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ -z $selected ]]; then
|
if [[ -z $selected ]]; then
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
selected_name=$(${basename} "$selected" | ${tr} . _)
|
selected_name=$(basename "$selected" | tr . _)
|
||||||
tmux_running=$(${pgrep} tmux)
|
tmux_running=$(pgrep tmux)
|
||||||
|
|
||||||
if [[ -z $TMUX ]] && [[ -z $tmux_running ]]; then
|
if [[ -z $TMUX ]] && [[ -z $tmux_running ]]; then
|
||||||
${tmux} new-session -s "$selected_name" -c "$selected"
|
tmux new-session -s "$selected_name" -c "$selected"
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if ! ${tmux} has-session -t="$selected_name" 2>/dev/null; then
|
if ! tmux has-session -t="$selected_name" 2>/dev/null; then
|
||||||
${tmux} new-session -ds "$selected_name" -c "$selected"
|
tmux new-session -ds "$selected_name" -c "$selected"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
${tmux} switch-client -t "$selected_name"
|
tmux switch-client -t "$selected_name"
|
||||||
'');
|
'';
|
||||||
|
});
|
||||||
|
|
||||||
home.packages = [ cfg.pkg ];
|
home.packages = [ cfg.pkg ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue