mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-31 02:49:30 -06:00
28 lines
898 B
C#
28 lines
898 B
C#
using FileFlows.Plugin;
|
|
|
|
namespace FileFlows.BasicNodes.SystemElements;
|
|
|
|
/// <summary>
|
|
/// A flow to determine if this is running on Linux or not
|
|
/// </summary>
|
|
public class IsLinux : Node
|
|
{
|
|
/// <inheritdoc />
|
|
public override int Inputs => 1;
|
|
/// <inheritdoc />
|
|
public override int Outputs => 2;
|
|
/// <inheritdoc />
|
|
public override FlowElementType Type => FlowElementType.Logic;
|
|
/// <inheritdoc />
|
|
public override string Group => "System";
|
|
/// <inheritdoc />
|
|
public override string Icon => "fab fa-linux";
|
|
/// <inheritdoc />
|
|
public override string HelpUrl => "https://fileflows.com/docs/plugins/basic-nodes/system/is-linux";
|
|
/// <inheritdoc />
|
|
public override string CustomColor => "#2481e4";
|
|
|
|
/// <inheritdoc />
|
|
public override int Execute(NodeParameters args)
|
|
=> args.IsDocker == false && OperatingSystem.IsLinux() ? 1 : 2;
|
|
} |