new feature coming soon

This commit is contained in:
2025-10-19 16:06:43 +02:00
parent b8c45f39f4
commit 71a925e002
10 changed files with 455 additions and 34 deletions

View File

@@ -0,0 +1,20 @@
using Perfect11.TweaksInterface;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Perfect11.Inbox.Spotlight
{
public class Tweak : IPlugin
{
public string Name => "Enable/Disable Windows Spotlight";
public string Description => "Enable or Disable Windows Spotlight feature";
public string Category => "Annoyances";
public string Execute()
{
}
}
}