Compare commits

...

2 Commits

Author SHA1 Message Date
a63133a7a5 Merge branch 'main' of https://git.steelants.cz/JonatanRek/FakeDeck 2024-09-17 06:23:19 -07:00
600a08dd51 Process Macro Fixes 2024-09-17 06:23:17 -07:00
2 changed files with 11 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Text;
@@ -31,10 +32,16 @@ namespace FakeDeck.ButtonType
public static bool invokeAction(string process, string arguments = "")
{
if (!System.IO.File.ReadAllText("./configuration.yaml").Contains(process))
if (!File.ReadAllText("./configuration.yaml").Contains(process))
{
Debug.WriteLine("not known process");
return true;
return false;
}
if (!File.ReadAllText("./configuration.yaml").Contains(arguments))
{
Debug.WriteLine("not known arguments");
return false;
}
Process notePad = new Process();

View File

@@ -121,6 +121,8 @@ pages:
parameters:
- name: process
value: "cmd.exe"
- name: arguments
value: "/C ping google.com -t"
- name: image
value: "https://winaero.com/blog/wp-content/uploads/2019/06/WIndows-Terminal-icon.png"