Update tmux-pane-selection scripts to be more clear

This commit is contained in:
Loïc Gremaud 2024-09-02 19:45:42 +02:00
parent 78ce7dac48
commit 36bd56bcc4
Signed by: Legrems
GPG Key ID: D4620E6DF3E0121D

View File

@ -21,7 +21,7 @@ commands = defaultdict(list)
all_tty = [p.pane_tty for p in srv.panes] all_tty = [p.pane_tty for p in srv.panes]
cmd = f"-t {' -t '.join(all_tty)} -o pid:10 -o tty:10 -o command -ww -f" cmd = f"-t {' -t '.join(all_tty)} -o pid:10 -o tty:10 -o command -ww" # -f
sh_commands = sh.ps(cmd.split(' ')).stdout.decode().strip().split("\n") sh_commands = sh.ps(cmd.split(' ')).stdout.decode().strip().split("\n")
@ -55,7 +55,10 @@ def format_pane(pane):
else: else:
cmd = {"pid": "-", "command": "*command not found*"} cmd = {"pid": "-", "command": "*command not found*"}
return [f"{pane.pane_tty}: [Sess:{pane.session_name}, Win:{pane.window_name}] (cwd:{pane.pane_current_path.replace('/home/legrems/', '~/')}): {cmd['command']}"] path = pane.pane_current_path.replace("/home/legrems/Documents/Arcanite", "~/D/A")
path = path.replace("/home/legrems/Documents", "~/D")
path = path.replace("/home/legrems", "~")
return [f"{pane.pane_tty}: [{pane.session_name}: {pane.window_name}, {path}]: {cmd['command']}"]
panes = [] panes = []