79518505

Date: 2025-03-18 19:39:19
Score: 0.5
Natty:
Report link

Have you tried checking if you have xdotool installed? Also try to reproduce this in another C# project, only trying to run xdotool. Check if you have imported System.Diagnostics .

Try using the Process class instead (I wouldn't recommend this one for your use case as it works better on windows, but it might work):

Process xdotool = new Process();

xdotool.StartInfo.FileName = "xdotool";
xdotool.StartInfo.Arguments = "key comma";
xdotool.Start();
xdotool.WaitForExit(); // wait for finish
Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Throwaway