Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Local support for xsel #437

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 24 additions & 2 deletions src/TextCopy/LinuxClipboard_2.0.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,25 @@

static class LinuxClipboard
{
/// <summary>
/// Determine whether we should use a local path for xsel binary or not.
/// When start up, we will check if xsel exists in the
/// <see cref="AppContext.BaseDirectory"/> or not.
/// If it exists, we will use a local xsel for it, otherwise this property
/// will be <c>false</c>.
/// You can also set it manually, but if it's <c>false</c>, xsel binary
/// should exists in the user's path.
/// </summary>
/// <value>
/// <c>true</c> if we have to use local path, otherwise <c>false</c>.
/// </value>
public static bool UseLocal { get; set; }
static bool isWsl;

static LinuxClipboard()
{
isWsl = Environment.GetEnvironmentVariable("WSL_DISTRO_NAME") != null;
UseLocal = File.Exists(AppContext.BaseDirectory + "xsel");
}

public static Task SetTextAsync(string text, CancellationToken cancellation)
Expand All @@ -32,7 +46,7 @@ public static void SetText(string text)
}
else
{
BashRunner.Run($"cat {tempFileName} | xsel -i --clipboard ");
BashRunner.Run($"cat {tempFileName} | {GetXsel()} -i --clipboard ");
}
}
finally
Expand All @@ -57,7 +71,7 @@ public static string GetText()
}
else
{
BashRunner.Run($"xsel -o --clipboard > {tempFileName}");
BashRunner.Run($"{GetXsel()} -o --clipboard > {tempFileName}");
}
return File.ReadAllText(tempFileName);
}
Expand All @@ -66,5 +80,13 @@ public static string GetText()
File.Delete(tempFileName);
}
}
private static string GetXsel()
{
if (UseLocal)
{
return "./" + "xsel";
}
return "xsel";
}
}
#endif
26 changes: 24 additions & 2 deletions src/TextCopy/LinuxClipboard_2.1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,25 @@

static class LinuxClipboard
{
/// <summary>
/// Determine whether we should use a local path for xsel binary or not.
/// When start up, we will check if xsel exists in the
/// <see cref="AppContext.BaseDirectory"/> or not.
/// If it exists, we will use a local xsel for it, otherwise this property
/// will be <c>false</c>.
/// You can also set it manually, but if it's <c>false</c>, xsel binary
/// should exists in the user's path.
/// </summary>
/// <value>
/// <c>true</c> if we have to use local path, otherwise <c>false</c>.
/// </value>
public static bool UseLocal { get; set; }
static bool isWsl;

static LinuxClipboard()
{
isWsl = Environment.GetEnvironmentVariable("WSL_DISTRO_NAME") != null;
UseLocal = File.Exists(AppContext.BaseDirectory + "xsel");
}

public static async Task SetTextAsync(string text, CancellationToken cancellation)
Expand Down Expand Up @@ -43,7 +57,7 @@ static void InnerSetText(string tempFileName)
}
else
{
BashRunner.Run($"cat {tempFileName} | xsel -i --clipboard ");
BashRunner.Run($"cat {tempFileName} | {GetXsel()} -i --clipboard ");
}
}
finally
Expand Down Expand Up @@ -88,8 +102,16 @@ static void InnerGetText(string tempFileName)
}
else
{
BashRunner.Run($"xsel -o --clipboard > {tempFileName}");
BashRunner.Run($"{GetXsel()} -o --clipboard > {tempFileName}");
}
}
private static string GetXsel()
{
if (UseLocal)
{
return "./" + "xsel";
}
return "xsel";
}
}
#endif