├── .gitignore ├── Cleanup-CLI ├── Cleanup-CLI.csproj ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── Cleanup ├── Cleanup.csproj ├── Main.Designer.cs ├── Main.cs ├── Main.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── WinAPI.cs ├── LICENSE ├── README.md ├── SecureDesktop-GUI ├── About.Designer.cs ├── About.cs ├── About.resx ├── Gma.UserActivityMonitor.dll ├── Main.Designer.cs ├── Main.cs ├── Main.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── SecureDesktop-GUI.csproj ├── WinAPI.cs └── img │ ├── icon.ico │ ├── icon128-gray.png │ ├── icon128.png │ ├── icon16.png │ ├── icon256.png │ ├── icon32.png │ ├── icon64.png │ └── vector.svg ├── SecureDesktop.sln ├── SecureDesktop ├── DesktopAgent.Designer.cs ├── DesktopAgent.cs ├── DesktopAgent.resx ├── ISAAC.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ └── lock-icon.png ├── SecureDesktop.csproj ├── Taskbar.cs └── WinAPI.cs └── dependencies └── Gma.UserActivityMonitor.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/.gitignore -------------------------------------------------------------------------------- /Cleanup-CLI/Cleanup-CLI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/Cleanup-CLI/Cleanup-CLI.csproj -------------------------------------------------------------------------------- /Cleanup-CLI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/Cleanup-CLI/Program.cs -------------------------------------------------------------------------------- /Cleanup-CLI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/Cleanup-CLI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Cleanup/Cleanup.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/Cleanup/Cleanup.csproj -------------------------------------------------------------------------------- /Cleanup/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/Cleanup/Main.Designer.cs -------------------------------------------------------------------------------- /Cleanup/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/Cleanup/Main.cs -------------------------------------------------------------------------------- /Cleanup/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/Cleanup/Main.resx -------------------------------------------------------------------------------- /Cleanup/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/Cleanup/Program.cs -------------------------------------------------------------------------------- /Cleanup/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/Cleanup/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Cleanup/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/Cleanup/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Cleanup/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/Cleanup/Properties/Resources.resx -------------------------------------------------------------------------------- /Cleanup/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/Cleanup/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Cleanup/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/Cleanup/Properties/Settings.settings -------------------------------------------------------------------------------- /Cleanup/WinAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/Cleanup/WinAPI.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/README.md -------------------------------------------------------------------------------- /SecureDesktop-GUI/About.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop-GUI/About.Designer.cs -------------------------------------------------------------------------------- /SecureDesktop-GUI/About.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop-GUI/About.cs -------------------------------------------------------------------------------- /SecureDesktop-GUI/About.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop-GUI/About.resx -------------------------------------------------------------------------------- /SecureDesktop-GUI/Gma.UserActivityMonitor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop-GUI/Gma.UserActivityMonitor.dll -------------------------------------------------------------------------------- /SecureDesktop-GUI/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop-GUI/Main.Designer.cs -------------------------------------------------------------------------------- /SecureDesktop-GUI/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop-GUI/Main.cs -------------------------------------------------------------------------------- /SecureDesktop-GUI/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop-GUI/Main.resx -------------------------------------------------------------------------------- /SecureDesktop-GUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop-GUI/Program.cs -------------------------------------------------------------------------------- /SecureDesktop-GUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop-GUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SecureDesktop-GUI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop-GUI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SecureDesktop-GUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop-GUI/Properties/Resources.resx -------------------------------------------------------------------------------- /SecureDesktop-GUI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop-GUI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SecureDesktop-GUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop-GUI/Properties/Settings.settings -------------------------------------------------------------------------------- /SecureDesktop-GUI/SecureDesktop-GUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop-GUI/SecureDesktop-GUI.csproj -------------------------------------------------------------------------------- /SecureDesktop-GUI/WinAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop-GUI/WinAPI.cs -------------------------------------------------------------------------------- /SecureDesktop-GUI/img/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop-GUI/img/icon.ico -------------------------------------------------------------------------------- /SecureDesktop-GUI/img/icon128-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop-GUI/img/icon128-gray.png -------------------------------------------------------------------------------- /SecureDesktop-GUI/img/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop-GUI/img/icon128.png -------------------------------------------------------------------------------- /SecureDesktop-GUI/img/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop-GUI/img/icon16.png -------------------------------------------------------------------------------- /SecureDesktop-GUI/img/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop-GUI/img/icon256.png -------------------------------------------------------------------------------- /SecureDesktop-GUI/img/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop-GUI/img/icon32.png -------------------------------------------------------------------------------- /SecureDesktop-GUI/img/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop-GUI/img/icon64.png -------------------------------------------------------------------------------- /SecureDesktop-GUI/img/vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop-GUI/img/vector.svg -------------------------------------------------------------------------------- /SecureDesktop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop.sln -------------------------------------------------------------------------------- /SecureDesktop/DesktopAgent.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop/DesktopAgent.Designer.cs -------------------------------------------------------------------------------- /SecureDesktop/DesktopAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop/DesktopAgent.cs -------------------------------------------------------------------------------- /SecureDesktop/DesktopAgent.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop/DesktopAgent.resx -------------------------------------------------------------------------------- /SecureDesktop/ISAAC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop/ISAAC.cs -------------------------------------------------------------------------------- /SecureDesktop/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop/Program.cs -------------------------------------------------------------------------------- /SecureDesktop/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SecureDesktop/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SecureDesktop/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop/Properties/Resources.resx -------------------------------------------------------------------------------- /SecureDesktop/Resources/lock-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop/Resources/lock-icon.png -------------------------------------------------------------------------------- /SecureDesktop/SecureDesktop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop/SecureDesktop.csproj -------------------------------------------------------------------------------- /SecureDesktop/Taskbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop/Taskbar.cs -------------------------------------------------------------------------------- /SecureDesktop/WinAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/SecureDesktop/WinAPI.cs -------------------------------------------------------------------------------- /dependencies/Gma.UserActivityMonitor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDelta/Secure-Desktop/HEAD/dependencies/Gma.UserActivityMonitor.dll --------------------------------------------------------------------------------