From 76b2d32ae37eb0009eefe58674e3b16843cbb995 Mon Sep 17 00:00:00 2001 From: Jan200101 Date: Sat, 12 Dec 2020 14:38:05 +0100 Subject: add fish env support --- src/wine.c | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'src/wine.c') diff --git a/src/wine.c b/src/wine.c index 39b63ed..5d7030b 100644 --- a/src/wine.c +++ b/src/wine.c @@ -21,6 +21,7 @@ const static struct Command wine_commands[] = { { .name = "run", .func = wine_run, .description = "run an installed wine version" }, { .name = "list-installed", .func = wine_installed, .description = "list already installed wine versions" }, { .name = "env", .func = wine_env, .description = "add wine to your PATH in a POSIX shell"}, + { .name = "fish-env", .func = wine_env, .description = "add wine to your PATH in the fish shell"}, }; COMMAND_GROUP_FUNC(wine) @@ -266,6 +267,9 @@ COMMAND(wine, env) { if (argc > 1) { + // instead of creating redundant copies we just check for fish + bool fish_env = (strcmp(argv[0], "fish-env") == 0); + char winepath[PATH_MAX]; char* winebinloc = NULL; // to be set by the wine type check getWineDir(winepath, sizeof(winepath)); @@ -325,7 +329,14 @@ COMMAND(wine, env) } else { - printf("PS1=\"(%s) $PS1\"\nPATH=\"%s:$PATH\"\n", winever, winepath); + if (!fish_env) + { + printf("PS1=\"(%s) $PS1\"\nPATH=\"%s:$PATH\"\n", winever, winepath); + } + else + { + printf("set PATH %s $PATH\n", winepath); + } } //printf("PATH=\"%s\"\n# Run this code in your Terminal\n# by running eval `%s`", newpath, argv[0]); } -- cgit v1.2.3