diff options
author | Julian T <julian@jtle.dk> | 2022-03-18 15:36:53 +0100 |
---|---|---|
committer | Julian T <julian@jtle.dk> | 2022-03-18 15:36:53 +0100 |
commit | 2d8f41149631f6c68564975c6c6b0b2006ed4763 (patch) | |
tree | 5122e50c51d0e772b177655313c7e1bfeab95246 /scripts | |
parent | 69db449e55e10df6f18789b28012522ad5bb0825 (diff) |
Add nixshell to open_rel
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/Scripts/open_rel | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/scripts/Scripts/open_rel b/scripts/Scripts/open_rel index 06f246d..6d68c41 100755 --- a/scripts/Scripts/open_rel +++ b/scripts/Scripts/open_rel @@ -3,6 +3,8 @@ import re import subprocess as sp +import argparse + def get_window_title() -> str: command = ["xdotool", "getactivewindow", "getwindowname"] @@ -22,15 +24,31 @@ def launch_term(command=None, directory=None): sp.run(run) -def decide_and_run(title: str): - print(title) +def decide_and_run(title: str, do_shell=True): if title.startswith("fish "): launch_term(directory=title[5:]) elif (m := re.search(".*client\d*@\[(\d*)\] - Kakoune", title)): id = m.group(1) launch_term(command=f"kak -c {id}") + elif (m := re.search("nix-shell ([^ ]*)( +([^ ]*))?", title)): + shell_file = m.group(1) + folder = m.group(3) + if folder is None: + folder = shell_file + shell_file = None + if do_shell: + command = "nix-shell" + (f" {shell_file}" if shell_file else "") + else: + command = None + + launch_term(command=command, + directory=folder) if __name__ == "__main__": + parser = argparse.ArgumentParser() + parser.add_argument("--shell", "-s", action="store_true") + args = parser.parse_args() title = get_window_title() - decide_and_run(title) + + decide_and_run(title, args.shell) |